@zohodesk/react-cli 0.0.1-beta.161 → 0.0.1-beta.163
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +3 -7
- package/README.md +38 -2
- package/bin/cli.js +67 -21
- package/lib/configs/jest.config.js +1 -1
- package/lib/configs/webpack.dev.config.js +3 -0
- package/lib/configs/webpack.prod.config.js +15 -2
- package/lib/schemas/index.js +12 -0
- package/lib/utils/getCurrentBranch.js +1 -1
- package/lib/utils/getOptions.js +55 -1
- package/lib/utils/jsonHelper.js +11 -2
- package/package.json +2 -2
package/.eslintrc.js
CHANGED
@@ -108,7 +108,9 @@ let commonConfigs = {
|
|
108
108
|
'comma-dangle': [logLevel],
|
109
109
|
'comma-spacing': [logLevel],
|
110
110
|
'func-call-spacing': [logLevel],
|
111
|
-
|
111
|
+
// reference to this https://stackoverflow.com/questions/56337176/prettier-and-eslint-indents-not-working-together
|
112
|
+
// when using prettier, we should disable eslint's indent rule
|
113
|
+
indent: ['off', 2, { SwitchCase: 1 }],
|
112
114
|
'jsx-quotes': [logLevel, 'prefer-single'],
|
113
115
|
'key-spacing': [logLevel],
|
114
116
|
'keyword-spacing': [logLevel],
|
@@ -140,8 +142,6 @@ let commonConfigs = {
|
|
140
142
|
'prefer-template': [logLevel],
|
141
143
|
'prefer-rest-params': [logLevel],
|
142
144
|
'no-useless-constructor': [logLevel],
|
143
|
-
'no-duplicate-imports': [logLevel],
|
144
|
-
'array-callback-return': [logLevel],
|
145
145
|
'no-use-before-define': [logLevel],
|
146
146
|
|
147
147
|
'react/default-props-match-prop-types': [logLevel],
|
@@ -152,7 +152,6 @@ let commonConfigs = {
|
|
152
152
|
'react/no-this-in-sfc': [logLevel],
|
153
153
|
'react/no-will-update-set-state': [logLevel],
|
154
154
|
'react/no-unused-state': [logLevel],
|
155
|
-
'react/no-will-update-set-state': [logLevel],
|
156
155
|
// 'react/require-default-props': [logLevel],
|
157
156
|
// 'react/require-optimization': [logLevel],
|
158
157
|
|
@@ -171,9 +170,6 @@ let commonConfigs = {
|
|
171
170
|
'react/jsx-no-duplicate-props': [logLevel],
|
172
171
|
'react/no-deprecated': [logLevel],
|
173
172
|
'react/no-children-prop': [logLevel],
|
174
|
-
'react/no-unused-state': [logLevel],
|
175
|
-
'react/destructuring-assignment': [logLevel],
|
176
|
-
'react/default-props-match-prop-types': [logLevel],
|
177
173
|
|
178
174
|
'css-modules/no-unused-class': [logLevel, { camelCase: true }],
|
179
175
|
'css-modules/no-undef-class': [logLevel, { camelCase: 'only' }]
|
package/README.md
CHANGED
@@ -2,10 +2,46 @@
|
|
2
2
|
|
3
3
|
A CLI tool for build modern web application and libraries
|
4
4
|
|
5
|
+
# 0.0.1-beta.163
|
6
|
+
|
7
|
+
- **Issue Fix:-**
|
8
|
+
|
9
|
+
- if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
|
10
|
+
- jest test cases not runnig issue fix (typo moduleNameMapper => libAlias)
|
11
|
+
|
12
|
+
- **Features :-**
|
13
|
+
- feature added for pre process logic
|
14
|
+
- tailer made requirement for preprocess, just write node js file
|
15
|
+
- mention file in `"react-cli" => "preprocess" => "runner"`
|
16
|
+
- option parse logic added for react-cli (exprimental)
|
17
|
+
- `--stop_nodemon` usally preprocessor run in `nodemon` so to stop it this option is provided
|
18
|
+
|
19
|
+
# 0.0.1-exp.162.2
|
20
|
+
|
21
|
+
- **Optimazation:-**
|
22
|
+
- double time minimize optimazation
|
23
|
+
|
24
|
+
# 0.0.1-beta.162.1
|
25
|
+
|
26
|
+
- **Issue Fix:-**
|
27
|
+
- if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
|
28
|
+
|
29
|
+
# 0.0.1-beta.161.1
|
30
|
+
|
31
|
+
- **Features :-**
|
32
|
+
- feature added for pre process logic
|
33
|
+
- tailer made requirement for preprocess, just write node js file
|
34
|
+
- mention file in `"react-cli" => "preprocess" => "runner"`
|
35
|
+
- option parse logic added for react-cli (exprimental)
|
36
|
+
|
37
|
+
# 0.0.1-beta.162
|
38
|
+
|
39
|
+
- @zohodesk/datetimejs package updated to beta.8
|
40
|
+
|
5
41
|
# 0.0.1-beta.161
|
6
42
|
|
7
43
|
- **Features :-**
|
8
|
-
- feature added for efc `templateFilePath` in `
|
44
|
+
- feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" => "templateFilePath"`
|
9
45
|
- `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
|
10
46
|
- `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
|
11
47
|
- `getInitalAssets` this function has two arguments `assetsType`, `lang`
|
@@ -20,7 +56,7 @@ A CLI tool for build modern web application and libraries
|
|
20
56
|
# 0.0.1-exp.161.2
|
21
57
|
|
22
58
|
- Features
|
23
|
-
- feature added for efc `templateFilePath` in `
|
59
|
+
- feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" `
|
24
60
|
- `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
|
25
61
|
- `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
|
26
62
|
- `getInitalAssets` this function has two arguments `assetsType`, `lang`
|
package/bin/cli.js
CHANGED
@@ -1,28 +1,30 @@
|
|
1
1
|
#!/usr/bin/env node
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
const path = require('path');
|
4
|
+
const os = require('os');
|
5
|
+
const { existsSync } = require('fs');
|
6
|
+
const { spawnSync, spawn } = require('child_process');
|
7
|
+
const { getOptions } = require('../lib/utils/index.js');
|
7
8
|
|
8
|
-
|
9
|
+
const { log } = require('../lib/utils');
|
9
10
|
//initPreCommitHook();
|
10
11
|
|
11
|
-
|
12
|
+
const options = getOptions();
|
12
13
|
|
13
|
-
|
14
|
-
|
14
|
+
const { esLint: esLintOptions } = options || {};
|
15
|
+
const { preprocessor: preprocess } = options;
|
16
|
+
const {
|
15
17
|
ignoreFilePaths: esLintIgnorePaths,
|
16
18
|
fix: esLintFix,
|
17
19
|
isCI: isCI,
|
18
20
|
reportPath: reportPath
|
19
21
|
} = esLintOptions || {};
|
20
22
|
|
21
|
-
|
23
|
+
const isWindows = os.platform().toLowerCase() === 'win32';
|
22
24
|
|
23
|
-
|
24
|
-
|
25
|
-
|
25
|
+
const [, , option] = process.argv;
|
26
|
+
const args = process.argv.slice(3);
|
27
|
+
const appPath = process.cwd();
|
26
28
|
|
27
29
|
const isNodeModuleUnderAppFolder = __dirname.indexOf(appPath) !== -1;
|
28
30
|
|
@@ -35,15 +37,55 @@ function getCliPath(libName) {
|
|
35
37
|
return _getCliPath(libName) + suffixExt;
|
36
38
|
}
|
37
39
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
40
|
+
const webpack = getCliPath('webpack');
|
41
|
+
|
42
|
+
const nodemon = getCliPath('nodemon');
|
43
|
+
const babel = getCliPath('babel');
|
44
|
+
const propertyToJson = getCliPath('propertyToJson');
|
45
|
+
const esLint = getCliPath('eslint');
|
46
|
+
|
47
|
+
const preprocesserPath = preprocess.runner
|
48
|
+
? path.join(process.cwd(), preprocess.runner)
|
49
|
+
: '';
|
50
|
+
const preprocessCli = preprocess.stopNodemon ? 'node' : nodemon;
|
51
|
+
if (preprocesserPath && existsSync(preprocesserPath)) {
|
52
|
+
// eslint-disable-next-line default-case
|
53
|
+
switch (option) {
|
54
|
+
case 'start':
|
55
|
+
case 'docs':
|
56
|
+
spawn(preprocessCli, [preprocesserPath], {
|
57
|
+
stdio: 'inherit',
|
58
|
+
cwd: preprocesserPath.slice(0, preprocesserPath.lastIndexOf('/') + 1)
|
59
|
+
});
|
60
|
+
// NOTE: it's ok if we not close this here
|
61
|
+
// Because when node server stops this program willbe closed So this nodemon will be killed as well
|
62
|
+
break;
|
63
|
+
case 'nowatchstart':
|
64
|
+
case 'build:library:es':
|
65
|
+
case 'build:component:es':
|
66
|
+
case 'build:library:cmjs':
|
67
|
+
case 'build:component:cmjs':
|
68
|
+
spawnSync('node', [preprocesserPath], {
|
69
|
+
stdio: 'inherit',
|
70
|
+
cwd: preprocesserPath.slice(0, preprocesserPath.lastIndexOf('/') + 1)
|
71
|
+
});
|
72
|
+
break;
|
73
|
+
}
|
74
|
+
}
|
44
75
|
|
45
76
|
let result;
|
46
77
|
switch (option) {
|
78
|
+
case 'preprocessor':
|
79
|
+
if (preprocesserPath && existsSync(preprocesserPath)) {
|
80
|
+
result = spawnSync(preprocessCli, [preprocesserPath], {
|
81
|
+
stdio: 'inherit',
|
82
|
+
cwd: preprocesserPath.slice(0, preprocesserPath.lastIndexOf('/') + 1)
|
83
|
+
});
|
84
|
+
process.exit(result.status);
|
85
|
+
} else {
|
86
|
+
console.error(`preProcessor not exists ${preprocesserPath}`);
|
87
|
+
}
|
88
|
+
break;
|
47
89
|
case 'lint-setup': {
|
48
90
|
result = spawnSync(
|
49
91
|
'node',
|
@@ -155,10 +197,11 @@ switch (option) {
|
|
155
197
|
break;
|
156
198
|
|
157
199
|
case 'clean':
|
158
|
-
args = args.map(arg => path.join(appPath, arg));
|
159
200
|
result = spawnSync(
|
160
201
|
'node',
|
161
|
-
[require.resolve('../lib/utils/clean')].concat(
|
202
|
+
[require.resolve('../lib/utils/clean')].concat(
|
203
|
+
args.map(arg => path.join(appPath, arg))
|
204
|
+
),
|
162
205
|
{ stdio: 'inherit' }
|
163
206
|
);
|
164
207
|
process.exit(result.status);
|
@@ -218,12 +261,15 @@ switch (option) {
|
|
218
261
|
result = spawnSync(
|
219
262
|
webpack,
|
220
263
|
[
|
264
|
+
// '--progress',
|
265
|
+
// '--profile',
|
221
266
|
'--config',
|
222
|
-
require.resolve('../lib/configs/webpack.prod.config.js')
|
267
|
+
require.resolve('../lib/configs/webpack.prod.config.js'),
|
223
268
|
].concat(args),
|
224
269
|
{ stdio: 'inherit' }
|
225
270
|
);
|
226
271
|
|
272
|
+
// console.log(result);
|
227
273
|
process.exit(result.status);
|
228
274
|
break;
|
229
275
|
|
@@ -10,7 +10,7 @@ let appPath = process.cwd(); // '^@root(.*)$': '<rootDir>/src$1',
|
|
10
10
|
// '^@components(.*)$': '<rootDir>/src/components$1',
|
11
11
|
|
12
12
|
let moduleNameMapper = Object.keys(_libAlias.libAlias).reduce((previousValue, key) => {
|
13
|
-
previousValue[`^${key}(.*)$`] = `${
|
13
|
+
previousValue[`^${key}(.*)$`] = `${_libAlias.libAlias[key]}$1`;
|
14
14
|
return previousValue;
|
15
15
|
}, {});
|
16
16
|
let commonConfig = {
|
@@ -57,6 +57,9 @@ module.exports = {
|
|
57
57
|
entry: (0, _common.getEntries)(options, 'dev'),
|
58
58
|
devtool: sourcemap,
|
59
59
|
mode: 'development',
|
60
|
+
// watchOptions: {
|
61
|
+
// ignored: /node_modules.(?!@zohodesk)/
|
62
|
+
// },
|
60
63
|
output,
|
61
64
|
stats: options.app.disableWatch ? 'errors-only' : {
|
62
65
|
children: false
|
@@ -14,6 +14,7 @@ var _libAlias = require("./libAlias");
|
|
14
14
|
|
15
15
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
16
16
|
|
17
|
+
// import TerserPlugin from 'terser-webpack-plugin';
|
17
18
|
let options = (0, _utils.getOptions)();
|
18
19
|
let {
|
19
20
|
app: {
|
@@ -78,12 +79,23 @@ module.exports = {
|
|
78
79
|
},
|
79
80
|
concatenateModules: true,
|
80
81
|
minimize: true,
|
82
|
+
// by default if minimize: true in webpack minimize then webpack automaticaly add TerserPlugin,
|
83
|
+
// So we are overrideing it.
|
84
|
+
// minimizer: [
|
85
|
+
// new TerserPlugin({
|
86
|
+
// cache: true,
|
87
|
+
// parallel: true,
|
88
|
+
// sourceMap: isDevelopment && enableSMap,
|
89
|
+
// exclude: /\/smap/
|
90
|
+
// })
|
91
|
+
// ],
|
81
92
|
moduleIds: 'named'
|
82
93
|
},
|
83
94
|
stats: {
|
84
95
|
children: false,
|
85
96
|
colors: true,
|
86
97
|
// excludeAssets: /i18n/,
|
98
|
+
// excludeAssets: /./,
|
87
99
|
warningsFilter: /\[mini-css-extract-plugin\]/
|
88
100
|
},
|
89
101
|
plugins: (0, _pluginUtils.getProdPlugins)(options, output.publicPath),
|
@@ -115,7 +127,8 @@ module.exports = {
|
|
115
127
|
}] : null].filter(Boolean),
|
116
128
|
cacheDirectory: true
|
117
129
|
}
|
118
|
-
}],
|
130
|
+
}].filter(Boolean),
|
131
|
+
// include: path.join(appPath, folder)
|
119
132
|
include: module => {
|
120
133
|
let srcPath = _path.default.join(appPath, folder);
|
121
134
|
|
@@ -132,7 +145,7 @@ module.exports = {
|
|
132
145
|
exclude: /\.module\.css$/,
|
133
146
|
use: (0, _loaderUtils.getCSSLoaders)(hasRTL, rtlExclude, '[local]', false, null)
|
134
147
|
} : null, {
|
135
|
-
test: seperateCssModules ? /\.module\.css$/ :
|
148
|
+
test: seperateCssModules ? /\.module\.css$/ : /\.css$/,
|
136
149
|
use: (0, _loaderUtils.getCSSLoaders)(hasRTL, rtlExclude, false, cssUniqueness, selectorReplace, cssHashSelectors, classNamePrefix)
|
137
150
|
}, {
|
138
151
|
test: /\.jpe?g$|\.gif$|\.png$/,
|
package/lib/schemas/index.js
CHANGED
@@ -18,6 +18,18 @@ var _default = {
|
|
18
18
|
value: null,
|
19
19
|
cli: 'ssl_cert_url'
|
20
20
|
},
|
21
|
+
preprocess: {
|
22
|
+
// This option is for tell the react-cli which in preprocessor js file path
|
23
|
+
runner: {
|
24
|
+
value: '',
|
25
|
+
cli: 'preprocessor'
|
26
|
+
},
|
27
|
+
// usally preprocessor run in nodemon for, start and docs , preprocessor
|
28
|
+
stopNodemon: {
|
29
|
+
value: false,
|
30
|
+
cli: 'stop_nodemon'
|
31
|
+
}
|
32
|
+
},
|
21
33
|
i18n: {
|
22
34
|
chunkSplitEnable: {
|
23
35
|
value: false,
|
@@ -22,7 +22,7 @@ var _default = (type = 'git', cwd = process.cwd()) => {
|
|
22
22
|
});
|
23
23
|
}
|
24
24
|
|
25
|
-
let [currentBranch] = results.output.filter(d => d);
|
25
|
+
let [currentBranch] = results && results.output ? results.output.filter(d => d) : [''];
|
26
26
|
return currentBranch.replace(/(\r\n|\n|\r)/gm, '');
|
27
27
|
};
|
28
28
|
|
package/lib/utils/getOptions.js
CHANGED
@@ -5,6 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
});
|
6
6
|
exports.default = void 0;
|
7
7
|
|
8
|
+
var _child_process = require("child_process");
|
9
|
+
|
8
10
|
var _fs = _interopRequireDefault(require("fs"));
|
9
11
|
|
10
12
|
var _path = _interopRequireDefault(require("path"));
|
@@ -13,6 +15,9 @@ var _schemas = _interopRequireDefault(require("../schemas"));
|
|
13
15
|
|
14
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
15
17
|
|
18
|
+
// import { argv } from 'process';
|
19
|
+
const args = process.argv.slice(2); // console.log('argv', argv);
|
20
|
+
|
16
21
|
const NPM_CONFIG_PREFIX = 'npm_config_'; // TODO: we have to do option parse logic little better
|
17
22
|
// if user use react-cli stritly without using npm scripts options won't work,
|
18
23
|
// So we have to write our own option parse logic or some other library
|
@@ -37,6 +42,52 @@ keysWithColon.forEach(key => {
|
|
37
42
|
processEnv[nkey] = processEnv[key];
|
38
43
|
});
|
39
44
|
|
45
|
+
function getNpmVersion() {
|
46
|
+
// require("child_process").
|
47
|
+
let vers = '6';
|
48
|
+
|
49
|
+
try {
|
50
|
+
[vers] = (0, _child_process.execSync)('npm -v').toString().trim().split('.');
|
51
|
+
} catch (error) {
|
52
|
+
console.log(error);
|
53
|
+
}
|
54
|
+
|
55
|
+
return vers;
|
56
|
+
}
|
57
|
+
|
58
|
+
function getCWD() {
|
59
|
+
// require("child_process").
|
60
|
+
let cwd = process.cwd();
|
61
|
+
|
62
|
+
try {
|
63
|
+
let ress = (0, _child_process.execSync)('npm bin').toString();
|
64
|
+
let i = ress.lastIndexOf('node_modules');
|
65
|
+
cwd = i === -1 ? cwd : ress.slice(0, i);
|
66
|
+
} catch (error) {
|
67
|
+
console.log(error);
|
68
|
+
}
|
69
|
+
|
70
|
+
return cwd;
|
71
|
+
} // experimental argumnet parsing logic
|
72
|
+
|
73
|
+
|
74
|
+
args.forEach(option => {
|
75
|
+
if (/^--./.test(option)) {
|
76
|
+
let equIndex = option.indexOf('='); // equIndex = equIndex === -1 ? option.length : equIndex;
|
77
|
+
|
78
|
+
let key = option.slice(2, equIndex);
|
79
|
+
let value = option.slice(equIndex + 1);
|
80
|
+
|
81
|
+
if (equIndex === -1) {
|
82
|
+
key = option.slice(2);
|
83
|
+
value = true;
|
84
|
+
}
|
85
|
+
|
86
|
+
key = key.replace(/-|:/g, '_');
|
87
|
+
processEnv[key] = value;
|
88
|
+
}
|
89
|
+
});
|
90
|
+
|
40
91
|
let defaulter = (target, source) => {
|
41
92
|
let defaultObject = {};
|
42
93
|
Object.keys(target).forEach(key => {
|
@@ -87,7 +138,10 @@ let getOptions = () => {
|
|
87
138
|
userSchemas = require(packagePath)['react-cli'] || {};
|
88
139
|
}
|
89
140
|
|
90
|
-
let options = defaulter(_schemas.default, userSchemas || {});
|
141
|
+
let options = defaulter(_schemas.default, userSchemas || {}); // for future may be for npm 8 edge cases
|
142
|
+
|
143
|
+
options.npmVersion = getNpmVersion();
|
144
|
+
options.cwd = getCWD();
|
91
145
|
options.packageVersion = process.env.npm_package_version;
|
92
146
|
global.reactCLIOptions = options;
|
93
147
|
return options;
|
package/lib/utils/jsonHelper.js
CHANGED
@@ -45,12 +45,21 @@ let fileHandler = {
|
|
45
45
|
};
|
46
46
|
exports.fileHandler = fileHandler;
|
47
47
|
|
48
|
+
const isObject = obj => obj && obj.constructor === {}.constructor;
|
49
|
+
|
50
|
+
const isArray = obj => obj && obj.constructor === [].constructor; // In below funtion
|
51
|
+
// this function is for concat two json object like _.extend,
|
52
|
+
// if botha array we concat them
|
53
|
+
// if both object we use call this function recurcively
|
54
|
+
// if both differend data type we will just assign it
|
55
|
+
|
56
|
+
|
48
57
|
let jsonConcate = (receiverObj, senterObj) => {
|
49
58
|
Object.keys(senterObj).map(key => {
|
50
59
|
if (Object.prototype.hasOwnProperty.call(receiverObj, key)) {
|
51
|
-
if (receiverObj[key]
|
60
|
+
if (isObject(receiverObj[key]) && isObject(senterObj[key])) {
|
52
61
|
jsonConcate(receiverObj[key], senterObj[key]);
|
53
|
-
} else if (receiverObj[key]
|
62
|
+
} else if (isArray(receiverObj[key]) && isArray(senterObj[key])) {
|
54
63
|
receiverObj[key] = receiverObj[key].concat(senterObj[key]);
|
55
64
|
} else {
|
56
65
|
receiverObj[key] = senterObj[key];
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zohodesk/react-cli",
|
3
|
-
"version": "0.0.1-beta.
|
3
|
+
"version": "0.0.1-beta.163",
|
4
4
|
"description": "A CLI tool for build modern web application and libraries",
|
5
5
|
"scripts": {
|
6
6
|
"init": "node ./lib/utils/init.js",
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"@babel/preset-env": "7.11.0",
|
36
36
|
"@babel/preset-react": "7.10.4",
|
37
37
|
"@babel/runtime": "7.11.2",
|
38
|
-
"@zohodesk/datetimejs": "1.0.0-beta.
|
38
|
+
"@zohodesk/datetimejs": "1.0.0-beta.8",
|
39
39
|
"@zohodesk/eslint-plugin-react-performance": "1.0.3",
|
40
40
|
"@zohodesk/eslint-plugin-zsecurity": "0.0.1-beta.4",
|
41
41
|
"@zohodesk/normalizer": "1.0.2",
|