@hkdigital/lib-sveltekit 0.0.32 → 0.0.34

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.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -94,11 +94,17 @@ Everything inside `src/lib` is part of the library, everything inside `src/route
94
94
 
95
95
  The name of this library is `@hkdigital/lib-sveltekit` and it is published on [NPM](https://npmjs.com). You need NPM credentials to publish in the scope `@hkdigital`.
96
96
 
97
- ### Contribute
98
- If your wish to contribute to this library, please contact us [HKdigital](https://hkdigital.nl/contact). Alternatively, the license permits you to fork the library and publish under an alternative name. Change the package name in [package.json](./package.json) to do so.
99
-
100
97
  ```bash
98
+ # Manually
101
99
  npm login
102
100
  npm version patch
103
101
  npm publish --access public
104
102
  ```
103
+
104
+ ```bash
105
+ # Run npm version patch && npm publish --access public as specified in package.json
106
+ pnpm run publish
107
+ ```
108
+
109
+ ### Contribute
110
+ If your wish to contribute to this library, please contact us [HKdigital](https://hkdigital.nl/contact). Alternatively, the license permits you to fork the library and publish under an alternative name. Change the package name in [package.json](./package.json) to do so.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@hkdigital/lib-sveltekit",
3
- "version": "0.0.32",
3
+ "version": "0.0.34",
4
4
  "author": "Jens Kleinhout, HKdigital (https://hkdigital.nl)",
5
5
  "license": "ISC",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/HKdigital/hkdigital--lib-sveltekit"
8
+ "url": "git+https://github.com/HKdigital/hkdigital--lib-sveltekit.git"
9
9
  },
10
10
  "scripts": {
11
11
  "dev": "vite dev",
@@ -13,6 +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 version patch && npm publish --access public",
16
17
  "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
17
18
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
18
19
  "format": "prettier --write .",