@urnetwork/elements 0.0.0-beta.1 → 0.0.1-beta.1
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/README.md +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -26,5 +26,5 @@ https://pangrampangram.com/products/neue-montreal
|
|
|
26
26
|
- Make sure everything is committed and pushed to the main branch.
|
|
27
27
|
- If you're not already, login to npm with `npm login`.
|
|
28
28
|
- Run `npm pack --dry-run` to see what will be included in the package.
|
|
29
|
-
- If everything looks good, run `npm run release:patch` to publish the package. There are also `release:minor
|
|
29
|
+
- If everything looks good, run `npm run release:patch` to publish the package. There are also `release:beta`, `release:minor`, and `release:major` scripts available for versioning.
|
|
30
30
|
- Tag it on Github after publishing like `git tag vx.y.z` and `git push --tags`.
|
package/package.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"name": "@urnetwork/elements",
|
|
3
3
|
"author": "URnetwork <support@ur.io> (https://ur.io)",
|
|
4
4
|
"license": "ISC",
|
|
5
|
+
"version": "0.0.1-beta.1",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
7
8
|
"url": "git+https://github.com/urnetwork/elements.git"
|
|
@@ -14,7 +15,6 @@
|
|
|
14
15
|
"bugs": {
|
|
15
16
|
"url": "https://github.com/urnetwork/elements/issues"
|
|
16
17
|
},
|
|
17
|
-
"version": "0.0.0-beta.1",
|
|
18
18
|
"type": "module",
|
|
19
19
|
"exports": {
|
|
20
20
|
"./styles.css": "./dist/assets/styles.css",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"build:demo": "vite build --mode demo",
|
|
34
34
|
"preview": "vite preview",
|
|
35
35
|
"prepublishOnly": "npm run build",
|
|
36
|
+
"release:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
|
|
36
37
|
"release:patch": "npm version patch && npm publish",
|
|
37
38
|
"release:minor": "npm version minor && npm publish",
|
|
38
39
|
"release:major": "npm version major && npm publish"
|