-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to jest in the generated application
- Loading branch information
Ugo
committed
Jan 2, 2021
1 parent
62cabfc
commit 6c7b06d
Showing
4 changed files
with
47 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
const config = require('../config.js'); | ||
const config = require('../config'); | ||
|
||
const DEFAULT_ENV = 'stage'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"name": "<%= name %>", | ||
"version": "<%= version %>", | ||
"description": "<%= description %>", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "node .", | ||
"precommit": "lint-staged", | ||
"dev": "nodemon .", | ||
"test": "mocha lib/**/*/**/__test/*.spec.js --recursive", | ||
"deploy": "bash ./.deployment/deploy.sh", | ||
"build:deptree": "depcruise --exclude '^node_modules' --output-type dot lib | dot -T svg > dependencygraph.svg" | ||
}, | ||
"author": "", | ||
"email": "", | ||
"license": "", | ||
"devDependencies": {}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"prettier --write", | ||
"git add" | ||
] | ||
}, | ||
"dependencies": {} | ||
"name": "<%= name %>", | ||
"version": "<%= version %>", | ||
"description": "<%= description %>", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "node .", | ||
"precommit": "lint-staged", | ||
"dev": "nodemon .", | ||
"test": "jest --coverage", | ||
"deploy": "bash ./.deployment/deploy.sh", | ||
"build:deptree": "depcruise --exclude '^node_modules' --output-type dot lib | dot -T svg > dependencygraph.svg" | ||
}, | ||
"author": "", | ||
"email": "", | ||
"license": "", | ||
"devDependencies": {}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"prettier --write", | ||
"git add" | ||
] | ||
}, | ||
"dependencies": {} | ||
} |