Skip to content

Commit

Permalink
chore: upgrades deps
Browse files Browse the repository at this point in the history
  • Loading branch information
huafu committed Aug 10, 2018
1 parent 205af38 commit b7d71bb
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@
"devDependencies": {
"@types/fs-extra": "5.0.4",
"@types/jest": "^23.3.1",
"@types/node": "^10.5.6",
"@types/node": "^10.5.7",
"babel-jest": "^23.4.2",
"cross-spawn": "latest",
"doctoc": "latest",
"fs-extra": "^6.0.1",
"cross-spawn": "^6.0.5",
"doctoc": "^1.3.1",
"fs-extra": "^7.0.0",
"husky": "^0.14.3",
"jest": "^23.4.1",
"lint-staged": "^7.2.0",
"prettier": "^1.14.1",
"prettier": "^1.14.2",
"reflect-metadata": "^0.1.12",
"semver": "^5.5.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
"typescript": "^3.0.1"
},
"lint-staged": {
"*.js": [
Expand Down
4 changes: 2 additions & 2 deletions scripts/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function setupE2e() {
log('creating bundle');
const res = spawnSync('npm', ['-s', 'pack'], { cwd: Paths.rootDir });
const bundle = path.join(Paths.rootDir, res.stdout.toString().trim());
log('bundle create at ', bundle);
log('bundle created at ', bundle);

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

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

0 comments on commit b7d71bb

Please sign in to comment.