-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchetype-gulpfile.js
139 lines (117 loc) · 6.4 KB
/
archetype-gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
"use strict";
const $$ = require("shelljs");
const Path = require("path");
const archetype = require("./config/archetype");
const gulpHelper = archetype.devRequire("electrode-gulp-helper");
const exec = gulpHelper.exec;
function setupPath() {
const nmBin = "node_modules/.bin";
gulpHelper.envPath.addToFront(Path.resolve(nmBin));
gulpHelper.envPath.addToFront(Path.join(archetype.devPath, nmBin));
gulpHelper.envPath.addToFront(Path.join(__dirname, nmBin));
}
function setProductionEnv() {
process.env.NODE_ENV = "production";
}
function setWebpackDev() {
process.env.WEBPACK_DEV = "true";
}
function setOptimizeStats() {
process.env.OPTIMIZE_STATS = "true";
}
function checkFrontendCov(minimum) {
if (typeof minimum === "string") {
minimum += ".";
} else {
minimum = "";
}
return exec(`istanbul check-coverage 'coverage/client/*/coverage.json' --config=${__dirname}/config/istanbul/.istanbul.${minimum}yml`);
}
const tasks = {
// env setup common tasks
"~production-env": () => setProductionEnv(),
"~webpack-dev": () => setWebpackDev(),
"~optimize-stats": () => setOptimizeStats(),
// code build/compile tasks
"build": ["clean-dist", "build-lib", "build-dist"],
"build-dist": ["build-dist-min", "build-dist-dev"],
"build-dist-dev": {
desc: "",
task: () => exec(`webpack --config ${__dirname}/config/webpack/webpack.config.dev.js --colors`)
},
"build-dist-min": {
dep: ["~production-env"],
desc: "Build minified dist files for production",
task: () => exec(`webpack --config ${__dirname}/config/webpack/webpack.config.js --colors`)
},
"build-lib": {
dep: ["~production-env"],
task: ["clean-lib", "babel-src-step", "build-lib:flatten-l10n", "build-lib:copy-flow", "build-lib:clean-tmp"]
},
"babel-src-step": () => exec(`babel src -d lib`),
"build-lib:clean-tmp": () => $$.rm("-rf", "./tmp"),
"build-lib:copy-flow": () => exec(`node ${__dirname}/scripts/copy-as-flow-declaration.js`),
"build-lib:flatten-l10n": () => exec(`node ${__dirname}/scripts/l10n/flatten-messages.js`),
"archetype:check": ["archetype:lint", "archetype:test-dev-pkg", "clean-test-init", "archetype:test-init", "archetype:test-init-pkg", "clean-test-init"],
"archetype:lint": ["archetype:lint-server"],
"archetype:lint-server": () => exec(`eslint --color -c config/eslint/.eslintrc-node config/karma config/webpack demo-server`),
"archetype:test-dev-pkg": () => exec(`pjv -f dev/package.json`),
"archetype:test-init": () => exec(`yo electrode-component --projectName=test-init --packageName=test-init --packageGitHubOrg=walmartlabs --developerName="Arpan Nanavati" --ghUser=ananavati --ghRepo=test-init --createDirectory=Y`),
"archetype:test-init-pkg": "pjv -f test-init/package.json",
"check": ["check-dep", "lint", "test-cov"],
"check-ci": ["check-dep", "lint", "test-ci"],
"check-cov": ["lint", "test-cov"],
"check-dep": () => exec(`ecd -f package.json --cf ${__dirname}/config/dependencies/check.json -w`),
"check-dev": ["lint", "test-dev"],
"clean": ["clean-lib", "clean-dist"],
"clean-dist": () => $$.rm("-rf", "dist"),
"clean-lib": () => $$.rm("-rf", "lib"),
"clean-test-init": () => $$.rm("-rf", "test-init"),
"cov-frontend": () => checkFrontendCov(),
"cov-frontend-50": () => checkFrontendCov("50"),
"cov-frontend-70": () => checkFrontendCov("70"),
"cov-frontend-85": () => checkFrontendCov("85"),
"cov-frontend-95": () => checkFrontendCov("95"),
"dev": {
desc: "Start server in development mode",
task: ["~webpack-dev", ["server-dev", "server-test"]]
},
"dev-iso": {
desc: "Start ISO server in development mode",
task: ["~webpack-dev", ["iso-render-server-start", "server-dev-iso"]]
},
"hot": {
desc: "Start server in hot/auto-watch mode",
task: ["~webpack-dev", ["server-hot", "server-test"]]
},
"open-dev": ["dev", "open-demo"],
"open-hot": ["hot", "open-demo"],
"open-demo": "opener http://127.0.0.1:4000",
"iso-render-server-start": ["~webpack-dev", "iso-render-server-start-watch"],
"iso-render-server-start-watch": () => exec(`nodemon -w demo -w server -w src ${__dirname}/demo-server/index.js | bunyan -l warn`),
"lint": ["lint-stylus", "lint-react-demo", "lint-react-src", "lint-react-test", "lint-scripts"],
"lint-react-demo": () => exec(`eslint --ext .js,.jsx -c ${__dirname}/config/eslint/.eslintrc-react-demo demo/*.jsx --color`),
"lint-react-src": () => exec(`eslint --ext .js,.jsx -c ${__dirname}/config/eslint/.eslintrc-react src --color`),
"lint-react-test": () => exec(`eslint --ext .js,.jsx -c ${__dirname}/config/eslint/.eslintrc-react-test test/client --color`),
"lint-scripts": () => exec(`eslint --ext .js -c ${__dirname}/config/eslint/.eslintrc-base scripts --color`),
"lint-stylus": () => exec(`if [ -d src/styles ]; then stylint src/styles -c ${__dirname}/config/stylint/.stylintrc; else echo 'Skipping Stylint as no src/styles directory'; fi`),
"npm:prepublish": ["build-lib", "build-dist-dev", "build-dist-min"],
"server-dev": () => exec(`webpack-dev-server --port 4000 --config ${__dirname}/config/webpack/webpack.config.demo.dev.js --colors`),
"server-dev-iso": () => exec(`webpack-dev-server --port 2992 --config ${__dirname}/config/webpack/webpack.config.demo.dev.js --colors`),
"server-hot": () => exec(`webpack-dev-server --port 4000 --config ${__dirname}/config/webpack/webpack.config.demo.hot.js --colors`),
"server-test": () => exec(`webpack-dev-server --port 3001 --config ${__dirname}/config/webpack/webpack.config.test.js --colors`),
"test-ci": ["test-frontend-ci"],
"test-cov": ["test-frontend-cov"],
"test-dev": ["test-frontend-dev"],
"test-watch": ["test-frontend-dev-watch"],
"concurrent-test-watch": ["hot", "test-frontend-dev-watch"],
"test-frontend": () => exec(`karma start ${__dirname}/config/karma/karma.conf.js --colors`),
"test-frontend-ci": () => exec(`karma start --browsers PhantomJS,Firefox ${__dirname}/config/karma/karma.conf.coverage.js --colors`),
"test-frontend-cov": () => exec(`karma start ${__dirname}/config/karma/karma.conf.coverage.js --colors`),
"test-frontend-dev": () => exec(`karma start ${__dirname}/config/karma/karma.conf.dev.js --colors`),
"test-frontend-dev-watch": () => exec(`karma start ${__dirname}/config/karma/karma.conf.watch.js --colors --browsers Chrome --no-single-run --auto-watch`)
};
module.exports = function (componentTasks, gulp) {
setupPath();
gulpHelper.loadTasks(Object.assign(tasks, componentTasks), gulp || require("gulp"));
};