easy-soft-develop 2.0.163 → 2.0.165
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/package.json
CHANGED
|
@@ -62,7 +62,10 @@ const {
|
|
|
62
62
|
contentFile: stylelintContentFile,
|
|
63
63
|
configFile: stylelintConfigFile,
|
|
64
64
|
} = require('../templates/stylelint.template');
|
|
65
|
-
const {
|
|
65
|
+
const {
|
|
66
|
+
configFile: jestConfigFile,
|
|
67
|
+
simpleTestFile: jestSimpleTestFile,
|
|
68
|
+
} = require('../templates/jest.template');
|
|
66
69
|
|
|
67
70
|
const childrenDevelopPackageConfigContent = `${fileGlobalHeader}
|
|
68
71
|
const childrenDevelopPackageList = [];
|
|
@@ -646,6 +649,8 @@ function createDevelopFiles(waitMessage = '', successMessage = '') {
|
|
|
646
649
|
|
|
647
650
|
writeFileWithOptionsSync(jestConfigFile);
|
|
648
651
|
|
|
652
|
+
writeFileWithOptionsSync(jestSimpleTestFile);
|
|
653
|
+
|
|
649
654
|
//#endregion
|
|
650
655
|
|
|
651
656
|
//#region assists
|