@boxcustodia/library 2.0.0-alpha.7 → 2.0.0-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +65 -65
- package/dist/index.d.ts +85 -122
- package/dist/index.es.js +17140 -18535
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boxcustodia/library",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"release": "npm run build && npx standard-version && git push --follow-tags origin develop && npm publish && npm run storybook:deploy",
|
|
35
35
|
"release:push": "npm run build && git push --follow-tags origin develop && npm publish",
|
|
36
36
|
"release:next": "npm run build && npx standard-version --prerelease alpha && git push --follow-tags origin v2 && npm publish --tag next && npm run chromatic",
|
|
37
|
+
"release:next:publish": "npm publish --tag next",
|
|
37
38
|
"release:canary": "npm run build && npx standard-version --prerelease canary && git push --follow-tags origin develop && npm publish --tag canary",
|
|
38
39
|
"release:minor": "npm run build && npx standard-version --release-as minor && git push --follow-tags origin develop && npm publish",
|
|
39
40
|
"release:patch": "npm run build && npx standard-version --release-as patch && git push --follow-tags origin develop && npm publish",
|