@xtacinema/core 1.0.0 → 1.0.1

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.
@@ -0,0 +1,27 @@
1
+ name: Publish
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 20
18
+ registry-url: https://registry.npmjs.org
19
+
20
+ - name: Configure npm auth
21
+ run: |
22
+ npm config set //registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}
23
+
24
+ - name: Publish
25
+ run: npm publish --access public
26
+ env:
27
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xtacinema/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core utilities for shared setup",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
@@ -21,4 +21,4 @@
21
21
  "exports": {
22
22
  "prettier": "./src/prettier.config.mjs"
23
23
  }
24
- }
24
+ }