File tree Expand file tree Collapse file tree 12 files changed +10837
-7402
lines changed Expand file tree Collapse file tree 12 files changed +10837
-7402
lines changed Original file line number Diff line number Diff line change 1+ /.yarn /** linguist-vendored
2+ /.yarn /releases /* binary
3+ /.yarn /plugins /** /* binary
4+ /.pnp. * binary linguist-generated
Original file line number Diff line number Diff line change @@ -25,14 +25,16 @@ jobs:
2525 with :
2626 node-version : ${{matrix.node-versions}}
2727
28+ - run : corepack enable
29+
2830 - name : Remove Lock File
2931 run : rm yarn.lock
3032
3133 - name : Install Yarn Dependencies
32- run : yarn install
34+ run : yarn install --mode update-lockfile && yarn install
3335
3436 - name : Show Installed Versions
35- run : yarn list --depth=0
37+ run : yarn info --name-only
3638
3739 - name : Run Tests
3840 run : yarn test
Original file line number Diff line number Diff line change 1818 with :
1919 node-version : ' 22'
2020
21+ - run : corepack enable
22+
2123 - name : Install Yarn Dependencies
2224 run : yarn install
2325
Original file line number Diff line number Diff line change 2525 with :
2626 node-version : ${{matrix.node-versions}}
2727
28+ - run : corepack enable
29+
2830 - name : Remove Lock File
2931 run : rm yarn.lock
3032
@@ -40,10 +42,10 @@ jobs:
4042 git commit -am "Force Lowest Dependencies"
4143
4244 - name : Install Yarn Dependencies
43- run : yarn install
45+ run : yarn install --mode update-lockfile && yarn install
4446
4547 - name : Show Installed Versions
46- run : yarn list --depth=0
48+ run : yarn info --name-only
4749
4850 - name : Run Tests
4951 run : yarn test
Original file line number Diff line number Diff line change @@ -25,11 +25,13 @@ jobs:
2525 with :
2626 node-version : ${{matrix.node-versions}}
2727
28+ - run : corepack enable
29+
2830 - name : Install Yarn Dependencies
2931 run : yarn install
3032
3133 - name : Show Installed Versions
32- run : yarn list --depth=0
34+ run : yarn info --name-only
3335
3436 - name : Run Tests
3537 run : yarn test
Original file line number Diff line number Diff line change 9797 with :
9898 node-version : ' 22'
9999
100+ - run : corepack enable
101+
100102 - if : ${{ contains(matrix.app.name, 'pnpm') }}
101103 name : Install pnpm
102104 uses : pnpm/action-setup@v4
Original file line number Diff line number Diff line change 1- node_modules /
2- npm-debug.log *
1+ # https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
2+ .yarn /*
3+ ! .yarn /cache
4+ ! .yarn /patches
5+ ! .yarn /plugins
6+ ! .yarn /releases
7+ ! .yarn /sdks
8+ ! .yarn /versions
9+
10+ node_modules
11+ yarn-error.log
12+
313/test_tmp
Original file line number Diff line number Diff line change 1+ nodeLinker : node-modules
Original file line number Diff line number Diff line change 33 "version" : " 4.7.0" ,
44 "description" : " Webpack Encore is a simpler way to integrate Webpack into your application" ,
55 "main" : " index.js" ,
6+ "packageManager" :
" [email protected] " ,
67 "scripts" : {
78 "test" : " yarn run test:main && yarn run test:persistent-cache" ,
89 "test:main" : " mocha --reporter spec test --recursive --ignore test/persistent-cache/*" ,
5152 "@babel/preset-react" : " ^7.9.0" ,
5253 "@babel/preset-typescript" : " ^7.0.0" ,
5354 "@hotwired/stimulus" : " ^3.0.0" ,
54- "@symfony/mock-module" : " file :fixtures/stimulus/mock-module" ,
55+ "@symfony/mock-module" : " portal :fixtures/stimulus/mock-module" ,
5556 "@symfony/stimulus-bridge" : " ^3.0.0" ,
5657 "@vue/babel-helper-vue-jsx-merge-props" : " ^1.0.0" ,
5758 "@vue/babel-plugin-jsx" : " ^1.0.0" ,
223224 " lib/" ,
224225 " bin/" ,
225226 " index.js"
226- ],
227- "packageManager" :
" [email protected] +sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" 227+ ]
228228}
Original file line number Diff line number Diff line change @@ -286,12 +286,12 @@ module.exports = Encore.getWebpackConfig();
286286
287287 describe ( 'Without webpack-dev-server installed' , ( ) => {
288288 before ( ( ) => {
289- execSync ( 'yarn remove webpack-dev-server --dev ' , { cwd : projectDir } ) ;
289+ execSync ( 'yarn remove webpack-dev-server' , { cwd : projectDir } ) ;
290290 } ) ;
291291
292292 after ( ( ) => {
293293 // Re-install webpack-dev-server and ensure the project is in a clean state
294- execSync ( 'git checkout package.json' , { cwd : projectDir } ) ;
294+ execSync ( 'git checkout package.json yarn.lock ' , { cwd : projectDir } ) ;
295295 execSync ( 'yarn install' , { cwd : projectDir } ) ;
296296 } ) ;
297297
You can’t perform that action at this time.
0 commit comments