@xtacinema/core 1.0.1 → 1.0.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.
package/package.json CHANGED
@@ -1,16 +1,19 @@
1
1
  {
2
2
  "name": "@xtacinema/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "description": "Core utilities for shared setup",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
9
  "license": "ISC",
10
- "keywords": [],
11
10
  "author": {
12
11
  "name": "xtaide",
13
- "email": "admin@xtatech.com"
12
+ "email": "admin@xtacinema.com"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/xtacinema/core"
14
17
  },
15
18
  "peerDependencies": {
16
19
  "prettier": "^3.0.0"
@@ -20,5 +23,10 @@
20
23
  },
21
24
  "exports": {
22
25
  "prettier": "./src/prettier.config.mjs"
23
- }
26
+ },
27
+ "files": [
28
+ "config",
29
+ "src",
30
+ "package.json"
31
+ ]
24
32
  }
package/.gitattributes DELETED
@@ -1,2 +0,0 @@
1
- # Auto detect text files and perform LF normalization
2
- * text=auto
@@ -1,27 +0,0 @@
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 }}