@carsayo/types 1.1.892057 → 1.1.892060

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.
Files changed (2) hide show
  1. package/deploy.sh +7 -0
  2. package/package.json +4 -1
package/deploy.sh ADDED
@@ -0,0 +1,7 @@
1
+ # TypeScript 빌드
2
+ npx tsc
3
+
4
+ # 이 토큰은 해당 패키지에만 접근 가능한 토큰으로, 시크릿하게 관리해야 합니다.
5
+ NPM_TOKEN="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"
6
+
7
+ npm publish --access public --//registry.npmjs.org/:_authToken=$NPM_TOKEN
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892057",
3
+ "version": "1.1.892060",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,5 +21,8 @@
21
21
  "homepage": "https://github.com/carsayoDev/Carsayo_Types#readme",
22
22
  "devDependencies": {
23
23
  "typescript": "^5.5.4"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
24
27
  }
25
28
  }