Skip to content

Commit

Permalink
fix: 🚨 fix build and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideSegullo committed Oct 26, 2024
1 parent e3a126a commit e128d32
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 34 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/release-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,7 @@ jobs:
- name: Run Nx release version
run: pnpm release -d false

# Step 10: Run the build for the affected changes
- name: Run build
run: pnpm build

# Step 11: Run publish
# Step 10: Run publish
- name: Publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand All @@ -81,13 +77,3 @@ jobs:
# like NPM_CONFIG_REGISTRY so npm publish ends up ignoring the .npmrc file
# which is set up by `setup-node` action.
run: npx nx release publish --verbose --tag $RELEASE_TAG

# Step 12: Upload artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
path: './dist'

# Step 13: Clean up dist directory
- name: Cleanup dist directory
run: rm -rf ./dist # Remove the dist directory to start fresh
16 changes: 1 addition & 15 deletions .github/workflows/release-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,7 @@ jobs:
- name: Run Nx release version
run: pnpm release -d false

# Step 10: Run the build for the affected changes
- name: Run build
run: pnpm build

# Step 11: Run publish
# Step 10: Run publish
- name: Publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand All @@ -79,13 +75,3 @@ jobs:
# like NPM_CONFIG_REGISTRY so npm publish ends up ignoring the .npmrc file
# which is set up by `setup-node` action.
run: pnpx nx release publish --verbose

# Step 12: Upload artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
path: './dist'

# Step 13: Clean up dist directory
- name: Cleanup dist directory
run: rm -rf ./dist # Remove the dist directory to start fresh
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"cookies-next": "^4.2.1",
"superjson": "^2.2.1",
"zustand": "^4.5.0",
"@quirks/store": "0.27.2-next.10"
"@quirks/store": "0.27.2-next.11"
},
"peerDependencies": {
"next": "^13"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"dependencies": {
"@quirks/store": "0.27.2-next.10",
"@quirks/store": "0.27.2-next.11",
"@quirks/core": "0.19.1-next.11",
"babel-plugin-module-resolver": "^5.0.0",
"@craftzdog/react-native-buffer": "^6.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"sideEffects": false,
"type": "module",
"dependencies": {
"@quirks/store": "0.27.2-next.10",
"@quirks/store": "0.27.2-next.11",
"@quirks/core": "0.19.1-next.11",
"cosmjs-types": "^0.9.0",
"@cosmjs/amino": "^0.32.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"sideEffects": false,
"type": "module",
"dependencies": {
"@quirks/store": "0.27.2-next.10",
"@quirks/store": "0.27.2-next.11",
"@quirks/core": "0.19.1-next.11",
"vue-zustand": "^0.6.0",
"eventemitter3": "^5.0.1",
Expand Down

0 comments on commit e128d32

Please sign in to comment.