@dencinema/core 1.0.1 → 1.0.5

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.
@@ -5,6 +5,10 @@ on:
5
5
  branches:
6
6
  - main
7
7
 
8
+ permissions:
9
+ id-token: write
10
+ contents: read
11
+
8
12
  jobs:
9
13
  publish:
10
14
  runs-on: ubuntu-latest
@@ -16,4 +20,4 @@ jobs:
16
20
  registry-url: "https://registry.npmjs.org"
17
21
  - run: npm publish
18
22
  env:
19
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
23
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@dencinema/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.5",
4
4
  "description": "core utilities for TeaCinema",
5
5
  "exports": {
6
6
  "prettier": "./src/prettier/index.js"
7
7
  },
8
8
  "scripts": {
9
- "test": "echo \"Error: no test specified\" && exit 1"
9
+ "test": "echo \"Error: no test specified\" && exit 1",
10
+ "up:major": "npm version major",
11
+ "up:minor": "npm version minor",
12
+ "up:patch": "npm version patch"
10
13
  },
11
14
  "publishConfig": {
12
15
  "access": "public"