apaas-oapi-client 0.1.2 → 0.1.4

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.
@@ -30,9 +30,6 @@ jobs:
30
30
  - name: Run Tests
31
31
  run: npm test
32
32
 
33
- - name: Debug npm token
34
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc && cat ~/.npmrc
35
-
36
33
  - name: Publish to npm
37
34
  run: npm publish --access public
38
35
  env:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apaas-oapi-client",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "exports": {
5
5
  "./node-sdk": "./dist/index.js",
6
6
  ".": "./dist/index.js"
@@ -11,7 +11,8 @@
11
11
  "scripts": {
12
12
  "build": "rollup -c",
13
13
  "test": "jest",
14
- "dev": "ts-node src/index.ts"
14
+ "dev": "ts-node src/index.ts",
15
+ "release": "npm run build && git add . && git commit -m 'chore(release): publish new version' && npm version patch && git push origin main --follow-tags"
15
16
  },
16
17
  "keywords": [],
17
18
  "author": "",