Skip to content

Commit b7d71bb

Browse files
committed
chore: upgrades deps
1 parent 205af38 commit b7d71bb

3 files changed

Lines changed: 20 additions & 20 deletions

File tree

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,19 @@
4747
"devDependencies": {
4848
"@types/fs-extra": "5.0.4",
4949
"@types/jest": "^23.3.1",
50-
"@types/node": "^10.5.6",
50+
"@types/node": "^10.5.7",
5151
"babel-jest": "^23.4.2",
52-
"cross-spawn": "latest",
53-
"doctoc": "latest",
54-
"fs-extra": "^6.0.1",
52+
"cross-spawn": "^6.0.5",
53+
"doctoc": "^1.3.1",
54+
"fs-extra": "^7.0.0",
5555
"husky": "^0.14.3",
5656
"jest": "^23.4.1",
5757
"lint-staged": "^7.2.0",
58-
"prettier": "^1.14.1",
58+
"prettier": "^1.14.2",
5959
"reflect-metadata": "^0.1.12",
6060
"semver": "^5.5.0",
6161
"tslint": "^5.11.0",
62-
"typescript": "^2.9.2"
62+
"typescript": "^3.0.1"
6363
},
6464
"lint-staged": {
6565
"*.js": [

scripts/e2e.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function setupE2e() {
4242
log('creating bundle');
4343
const res = spawnSync('npm', ['-s', 'pack'], { cwd: Paths.rootDir });
4444
const bundle = path.join(Paths.rootDir, res.stdout.toString().trim());
45-
log('bundle create at ', bundle);
45+
log('bundle created at ', bundle);
4646

4747
// get the hash of the bundle (to know if we should install it again or not)
4848
const bundleHash = sha1(fs.readFileSync(bundle));
@@ -52,7 +52,7 @@ function setupE2e() {
5252
fs.mkdirpSync(Paths.e2eWorkTemplatesDir);
5353

5454
// link locally so we could find it easily
55-
if (!fs.existsSync(Paths.e2eWotkDirLink)) {
55+
if (!process.env.CI && !fs.existsSync(Paths.e2eWotkDirLink)) {
5656
fs.symlinkSync(Paths.e2eWorkDir, Paths.e2eWotkDirLink, 'dir');
5757
log(
5858
'symbolic link to the work directory created at: ',

0 commit comments

Comments
 (0)