@dineroregnskab/eslint-plugin-custom-rules 2.1.0 → 2.1.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 +4 -6
- package/package.json +1 -1
- package/rules/use-danish-currency-pipe.js +1 -1
package/README.md
CHANGED
|
@@ -68,14 +68,12 @@ module.exports = {
|
|
|
68
68
|
|
|
69
69
|
### Publish & install new rule locally
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
1. Log in to npm using `npm login`
|
|
72
|
+
2. run:
|
|
72
73
|
|
|
73
74
|
```bash
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
```bash
|
|
78
|
-
npm publish
|
|
75
|
+
# {version_type}: The type of version increment (patch, minor, major)
|
|
76
|
+
npm version {version_type} && npm publish
|
|
79
77
|
```
|
|
80
78
|
|
|
81
79
|
- In dinero.Frontend and/or dinero.Admin, update the root `package.json` file with the newly published version number.
|
package/package.json
CHANGED