We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0b0cad commit f6dd7a5Copy full SHA for f6dd7a5
appveyor.yml
@@ -21,9 +21,9 @@ environment:
21
install:
22
- ps: Install-Product node $env:nodejs_version x64
23
- npm install yarn -g
24
- - yarn install
25
- - yarn link || yarn link
26
- - yarn link webpack
+ - yarn install --frozen-lockfile
+ - yarn link --frozen-lockfile || yarn link --frozen-lockfile
+ - yarn link webpack --frozen-lockfile
27
28
build: off
29
ci/travis-install.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash
2
set -ev
3
4
-yarn link || true && yarn link webpack;
+yarn link --frozen-lockfile || true && yarn link webpack --frozen-lockfile;
5
+
6
+yarn --frozen-lockfile
7
0 commit comments