Skip to content

Commit 9700574

Browse files
committed
minor #747 [Chore] Updating lock dependencies (weaverryan)
This PR was squashed before being merged into the master branch. Discussion ---------- [Chore] Updating lock dependencies This doesn't affect end-users. I'm doing this mostly to isolate what test "hash" changes are unique to Vue 3 in #746 and which are just from upgrading dependencies. Commits ------- 03bbd97 removing node_modules cache on appveyor 2020aae bumping to 7.7.0 babel/core to support babel.config.json bf7d18d forcing lock file on appveyor e3deda8 updating test hashes after dependency update f87806a updating dependencies
2 parents 950d5dd + 03bbd97 commit 9700574

File tree

4 files changed

+260
-329
lines changed

4 files changed

+260
-329
lines changed

.appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cache:
2-
- node_modules
2+
# - node_modules
33
- "%LOCALAPPDATA%\\Yarn"
44

55
environment:
@@ -11,11 +11,11 @@ platform:
1111

1212
install:
1313
- ps: Install-Product node $env:nodejs_version $env:platform
14-
- yarn
14+
- 'yarn --frozen-lockfile'
1515

1616
test_script:
1717
- node --version
1818
- yarn --version
1919
- yarn run test
2020

21-
build: off
21+
build: off

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"homepage": "https://github.com/symfony/webpack-encore",
2727
"dependencies": {
28-
"@babel/core": "^7.4.0",
28+
"@babel/core": "^7.7.0",
2929
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
3030
"@babel/preset-env": "^7.4.0",
3131
"assets-webpack-plugin": "^3.9.7",

test/functional.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2302,16 +2302,16 @@ module.exports = {
23022302
expect(config.outputPath).to.be.a.directory()
23032303
.with.files([
23042304
'entrypoints.json',
2305-
'runtime.e9dea5e6.js',
2306-
'main.00415522.js',
2305+
'runtime.518d4a5c.js',
2306+
'main.78f7d83e.js',
23072307
'manifest.json',
23082308
'symfony_logo.91beba37.png',
23092309
'symfony_logo_alt.f880ba14.png',
23102310
]);
23112311

23122312
webpackAssert.assertManifestPath(
23132313
'build/main.js',
2314-
'/build/main.00415522.js'
2314+
'/build/main.78f7d83e.js'
23152315
);
23162316
}
23172317

0 commit comments

Comments
 (0)