Skip to content

Commit

Permalink
nohoist
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-yangy committed Jul 27, 2024
1 parent 8b684b6 commit 3acc534
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .github/actions/pr-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ runs:
path: node_modules
key: ${{ runner.os }}-build-cache-deps-${{ hashFiles('yarn.lock') }}

- name: install depdenencies
- name: install dependencies
if: steps.restore-cache-node_modules.outputs.cache-hit != 'true'
shell: bash
run: yarn install --immutable
8 changes: 4 additions & 4 deletions .github/workflows/check-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
registry-url: https://registry.npmjs.org/
cache: "yarn"

- name: install depdenencies
- name: install dependencies
run: yarn install --immutable

- name: Build
Expand All @@ -40,7 +40,7 @@ jobs:
registry-url: https://registry.npmjs.org/
cache: "yarn"

- name: install depdenencies
- name: install dependencies
run: yarn install --immutable

- name: Lint
Expand All @@ -60,7 +60,7 @@ jobs:
registry-url: https://registry.npmjs.org/
cache: "yarn"

- name: install depdenencies
- name: install dependencies
run: yarn install --immutable

- name: Test
Expand All @@ -79,7 +79,7 @@ jobs:
registry-url: https://registry.npmjs.org/
cache: "yarn"

- name: install depdenencies
- name: install dependencies
run: yarn install --immutable

- name: Cache Playwright browsers
Expand Down
2 changes: 0 additions & 2 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@ enableGlobalCache: false

nodeLinker: node-modules

nmHoistingLimits: workspaces

yarnPath: .yarn/releases/yarn-4.3.1.cjs
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@
"examples/passport/wallets-signing-with-nextjs",
"examples/passport/wallets-transactions-with-nextjs"
],
"installConfig": {
"hoistingLimits": "workspaces"
}
"installConfig": [
"samples/**",
"examples/**"
]
}
}
2 changes: 1 addition & 1 deletion sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
"packageList": "./scripts/generate-package-list.sh",
"regenModules": "yarn generateIndex && yarn updateExports",
"typecheck": "tsc --noEmit --jsx preserve",
"typecheck": "tsc --noEmit --jsx preserve --skipLibCheck",
"updateDependencies": "yarn packageList && node ./scripts/updateDependencies.js && yarn syncpack:format",
"updateExports": "node scripts/updateExports.js"
},
Expand Down

0 comments on commit 3acc534

Please sign in to comment.