@datapos/datapos-shared 0.3.140 → 0.3.146
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 +7 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -13,6 +13,13 @@ Install as a production dependency:
|
|
|
13
13
|
npm install @datapos/datapos-shared
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
+
Create `.npmrc` with access token. Access token needs to disable 2FA and allow all access.
|
|
17
|
+
|
|
18
|
+
```ini
|
|
19
|
+
registry=https://registry.npmjs.org/
|
|
20
|
+
//registry.npmjs.org/:_authToken=<ACCESS TOKEN>
|
|
21
|
+
```
|
|
22
|
+
|
|
16
23
|
## Declarations
|
|
17
24
|
|
|
18
25
|
### Components
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.146",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"types": "./dist/types/src/index.d.ts",
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@datapos/datapos-development": "^0.3.
|
|
19
|
+
"@datapos/datapos-development": "^0.3.54",
|
|
20
20
|
"@types/markdown-it": "^14.1.2",
|
|
21
21
|
"@types/node": "^24.10.0",
|
|
22
22
|
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"prettier": "^3.6.2",
|
|
36
36
|
"retire": "^5.3.0",
|
|
37
37
|
"typescript": "^5.9.3",
|
|
38
|
-
"vite": "^7.2.
|
|
38
|
+
"vite": "^7.2.2",
|
|
39
39
|
"vite-plugin-dts": "^4.5.4"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"lint": "eslint .",
|
|
49
49
|
"publishToNPM": "npm publish --access public",
|
|
50
50
|
"release": "npm run syncWithGitHub && npm run build && npm run publishToNPM",
|
|
51
|
-
"syncWithGitHub": "npm run bumpVersion && node -e \"
|
|
51
|
+
"syncWithGitHub": "npm run bumpVersion && node -e \"import('@datapos/datapos-development').then(m => m.syncWithGitHub())\"",
|
|
52
52
|
"test": "echo \"***** TEST SCRIPT NOT IMPLEMENTED. *****\"",
|
|
53
53
|
"updateDependencies": "npm install -D @datapos/datapos-development@latest"
|
|
54
54
|
}
|