@dencinema/core 1.0.6 → 1.0.7

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.
@@ -11,13 +11,19 @@ permissions:
11
11
 
12
12
  jobs:
13
13
  publish:
14
+ name: Publish Job
14
15
  runs-on: ubuntu-latest
15
16
  steps:
16
- - uses: actions/checkout@v4
17
- - uses: actions/setup-node@v4
17
+ - name: Checkout repository
18
+ uses: actions/checkout@v4
19
+
20
+ - name: Setup Node.js
21
+ uses: actions/setup-node@v4
18
22
  with:
19
23
  node-version: 20
20
24
  registry-url: "https://registry.npmjs.org"
21
- - run: npm publish
25
+
26
+ - name: Publish package
27
+ run: npm publish
22
28
  env:
23
29
  NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dencinema/core",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "core utilities for TeaCinema",
5
5
  "exports": {
6
6
  "prettier": "./src/prettier/index.js"