@reffuse/extension-query 0.1.5 #16
@@ -12,5 +12,5 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
- name: Install dependencies
|
||||
run: bun install --frozen-lockfile
|
||||
- name: Lint TypeScript
|
||||
run: bun run lint:tsc
|
||||
- name: Build
|
||||
run: bun run build
|
||||
|
||||
@@ -21,12 +21,8 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: bun install --frozen-lockfile
|
||||
- name: Build
|
||||
run: |
|
||||
cd packages/reffuse
|
||||
bun run build
|
||||
run: bun run build
|
||||
- name: Publish
|
||||
run: |
|
||||
cd packages/reffuse
|
||||
npm publish --access public
|
||||
run: bun run publish
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
@@ -18,10 +18,6 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: bun install --frozen-lockfile
|
||||
- name: Build
|
||||
run: |
|
||||
cd packages/reffuse
|
||||
bun run build
|
||||
run: bun run build
|
||||
- name: Pack
|
||||
run: |
|
||||
cd packages/reffuse
|
||||
npm pack --dry-run
|
||||
run: bun run pack
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
"scripts": {
|
||||
"build": "turbo build --filter=!@reffuse/example",
|
||||
"lint:tsc": "turbo lint:tsc",
|
||||
"pack": "turbo pack --filter=!@reffuse/example",
|
||||
"publish": "turbo publish --filter=!@reffuse/example",
|
||||
"clean:cache": "rm -f tsconfig.tsbuildinfo",
|
||||
"clean:dist": "rm -rf dist",
|
||||
"clean:node": "rm -rf node_modules"
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"lint:tsc": "tsc --noEmit",
|
||||
"pack": "npm pack",
|
||||
"publish": "npm publish --access public",
|
||||
"clean:cache": "rm -f tsconfig.tsbuildinfo",
|
||||
"clean:dist": "rm -rf dist",
|
||||
"clean:node": "rm -rf node_modules"
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"lint:tsc": "tsc --noEmit",
|
||||
"pack": "npm pack",
|
||||
"publish": "npm publish --access public",
|
||||
"clean:cache": "rm -f tsconfig.tsbuildinfo",
|
||||
"clean:dist": "rm -rf dist",
|
||||
"clean:node": "rm -rf node_modules"
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||
"inputs": ["./src/**"],
|
||||
"outputs": ["./dist/**"]
|
||||
},
|
||||
"pack": {
|
||||
"dependsOn": ["^pack"]
|
||||
},
|
||||
"publish": {
|
||||
"dependsOn": ["^publish"]
|
||||
},
|
||||
"dev": {
|
||||
"persistent": true,
|
||||
"cache": false
|
||||
|
||||
Reference in New Issue
Block a user