forked from mermaid-js/mermaid
-
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.
- Loading branch information
Showing
11 changed files
with
2,001 additions
and
681 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,9 @@ | |
"build": "webpack --progress --colors", | ||
"build:watch": "yarn build --watch", | ||
"release": "yarn build -p --config webpack.config.prod.babel.js", | ||
"upgrade": "yarn-upgrade-all && yarn remove d3 && yarn add [email protected]", | ||
"upgrade": "yarn-upgrade-all && yarn remove d3 && yarn add [email protected] && yarn remove dagre-d3-renderer && yarn add [email protected] && yarn remove dagre-layout && yarn add [email protected] && yarn remove less && yarn add --dev [email protected] && yarn remove puppeteer && yarn add --dev [email protected] && yarn remove karma jasmine && yarn add --dev [email protected] [email protected]", | ||
"lint": "standard", | ||
"karma": "node -r babel-register node_modules/.bin/karma start karma.conf.js --single-run", | ||
"karma": "node -r babel-register node_modules/.bin/karma start karma.conf.js", | ||
"test": "yarn lint && yarn karma", | ||
"jison": "node -r babel-register node_modules/.bin/gulp jison", | ||
"prepublishOnly": "yarn build && yarn release && yarn test" | ||
|
@@ -37,41 +37,42 @@ | |
}, | ||
"dependencies": { | ||
"d3": "3.5.17", | ||
"dagre-d3-renderer": "^0.4.25", | ||
"dagre-layout": "^0.8.0", | ||
"dagre-d3-renderer": "0.4.25", | ||
"dagre-layout": "0.8.0", | ||
"he": "^1.1.1", | ||
"lodash": "^4.17.4", | ||
"moment": "^2.20.1" | ||
"lodash": "^4.17.5", | ||
"moment": "^2.21.0" | ||
}, | ||
"devDependencies": { | ||
"babel-core": "^6.26.0", | ||
"babel-loader": "^7.1.2", | ||
"babel-loader": "^7.1.3", | ||
"babel-plugin-lodash": "^3.3.2", | ||
"babel-preset-env": "^1.6.1", | ||
"codeclimate-test-reporter": "^0.5.0", | ||
"css-loader": "^0.28.7", | ||
"css-loader": "^0.28.10", | ||
"css-to-string-loader": "^0.1.3", | ||
"extract-text-webpack-plugin": "^3.0.2", | ||
"gulp": "^3.9.1", | ||
"gulp-filelog": "^0.4.1", | ||
"gulp-jison": "^1.2.0", | ||
"inject-loader": "^3.0.1", | ||
"jasmine": "^2.8.0", | ||
"jasmine": "2.8.0", | ||
"jasmine-es6": "^0.4.3", | ||
"jison": "^0.4.18", | ||
"karma": "^1.7.1", | ||
"karma": "1.7.1", | ||
"karma-chrome-launcher": "^2.2.0", | ||
"karma-jasmine": "^1.1.1", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-webpack": "^2.0.9", | ||
"less": "^2.7.3", | ||
"less-loader": "^4.0.5", | ||
"puppeteer": "^0.13.0", | ||
"standard": "^10.0.3", | ||
"style-loader": "^0.19.1", | ||
"webpack": "^3.10.0", | ||
"karma-webpack": "^2.0.13", | ||
"less": "2.7.3", | ||
"less-loader": "^4.0.6", | ||
"puppeteer": "0.13.0", | ||
"standard": "^11.0.0", | ||
"style-loader": "^0.20.2", | ||
"webpack": "^4.1.0", | ||
"webpack-cli": "^2.0.10", | ||
"webpack-node-externals": "^1.6.0", | ||
"yarn-upgrade-all": "^0.2.0" | ||
"yarn-upgrade-all": "^0.3.0" | ||
}, | ||
"files": [ | ||
"dist", | ||
|
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
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
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,6 +1,7 @@ | ||
import { jsConfig } from './webpack.config.base' | ||
|
||
const minConfig = jsConfig() | ||
minConfig.mode = 'production' | ||
minConfig.output.filename = '[name].min.js' | ||
|
||
export default [minConfig] |
Oops, something went wrong.