@hkdigital/lib-sveltekit 0.0.39 → 0.0.40
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 +3 -2
- package/package.json +2 -2
package/README.md
CHANGED
@@ -102,8 +102,9 @@ npm publish --access public
|
|
102
102
|
```
|
103
103
|
|
104
104
|
```bash
|
105
|
-
# Run npm version patch && npm publish --access public
|
106
|
-
|
105
|
+
# Run `npm version patch && npm publish --access public && git push`
|
106
|
+
# as specified in package.json
|
107
|
+
pnpm run publish:npm
|
107
108
|
```
|
108
109
|
|
109
110
|
### Contribute
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hkdigital/lib-sveltekit",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.40",
|
4
4
|
"author": "Jens Kleinhout, HKdigital (https://hkdigital.nl)",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": {
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"preview": "vite preview",
|
14
14
|
"package": "svelte-kit sync && svelte-package && publint",
|
15
15
|
"prepublishOnly": "npm run package",
|
16
|
-
"publish:npm": "npm version patch && npm publish --access public",
|
16
|
+
"publish:npm": "npm version patch && npm publish --access public && git push",
|
17
17
|
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
18
18
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
|
19
19
|
"format": "prettier --write .",
|