gant-core 2.0.7 → 2.0.9
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/CHANGELOG.md +12 -0
- package/lib/cli/create/module/index.mjs +1 -1
- package/lib/core/store/index.js +1 -1
- package/package.json +1 -1
- package/lib/cli/config/defineConfig.js +0 -104
- package/lib/cli/config/index.js +0 -156
- package/lib/cli/copyfiles/index.js +0 -34
- package/lib/cli/create/config/index.js +0 -1233
- package/lib/cli/create/index.js +0 -5
- package/lib/cli/create/module/index.js +0 -33215
- package/lib/cli/helper/index.d.ts +0 -17
- package/lib/cli/i18n/index.js +0 -22186
- package/lib/cli/i18n/utils.js +0 -181
- package/lib/cli/index.js +0 -3656
- package/lib/cli/ms/index.js +0 -23
- package/lib/cli/routes/index.js +0 -76
- package/lib/cli/template/core.txt +0 -1
- package/lib/cli/tsconfig/index.js +0 -71
- package/lib/cli/utils/detectPort.js +0 -121
- package/lib/cli/utils/getJavascriptfile.js +0 -15
- package/lib/cli/utils/index.d.ts +0 -18
- package/lib/cli/utils/index.js +0 -4949
- package/lib/cli/webpack/Webpack.js +0 -61
- package/lib/cli/webpack/config/analyzer.config.js +0 -18
- package/lib/cli/webpack/config/browsers.js +0 -14
- package/lib/cli/webpack/config/cssRules.js +0 -81
- package/lib/cli/webpack/config/default.config.js +0 -180
- package/lib/cli/webpack/config/development.config.js +0 -46
- package/lib/cli/webpack/config/framework/index.js +0 -26
- package/lib/cli/webpack/config/framework/react.js +0 -24
- package/lib/cli/webpack/config/framework/vue.js +0 -34
- package/lib/cli/webpack/config/index.js +0 -24
- package/lib/cli/webpack/config/production.config.js +0 -75
- package/lib/cli/webpack/plugins/copy.js +0 -21
- package/lib/cli/webpack/plugins/index.js +0 -5
- package/lib/core/event/index.js +0 -2
- package/lib/core/microservices/index.js +0 -11
- package/lib/core/utils/index.js +0 -84
- package/lib/helper/acorn-BmLbFX50.js +0 -19
- package/lib/helper/angular-DGof4p_D.js +0 -7
- package/lib/helper/babel-Nwboghbx.js +0 -22
- package/lib/helper/estree-CSMrPe9Y.js +0 -44
- package/lib/helper/flow-h7wrzCJb.js +0 -27
- package/lib/helper/glimmer-Bew2Vz0Y.js +0 -38
- package/lib/helper/graphql-BRv4I30B.js +0 -38
- package/lib/helper/html-uZad-YZz.js +0 -28
- package/lib/helper/index.js +0 -27848
- package/lib/helper/markdown-iwdpU9Ia.js +0 -68
- package/lib/helper/meriyah-UktrHj4H.js +0 -11
- package/lib/helper/postcss-H_0MYJut.js +0 -58
- package/lib/helper/typescript-CqdW0_wW.js +0 -31
- package/lib/helper/yaml-DXNEs-hZ.js +0 -170
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
declare function getJavascriptfile(filePath: string): any;
|
|
2
|
-
|
|
3
|
-
declare function loadJSON(filePath: string): any;
|
|
4
|
-
declare function getAbsFile(file: string, cwd: string): string;
|
|
5
|
-
declare function getAbsFiles(opts: {
|
|
6
|
-
files: string[];
|
|
7
|
-
cwd: string;
|
|
8
|
-
}): string[];
|
|
9
|
-
declare function generateDir(tempPath: string): void;
|
|
10
|
-
declare const mergeConfig: (object1: any, object2: any) => any;
|
|
11
|
-
declare function copyFolder(sourceFolder: string, destinationFolder: string): void;
|
|
12
|
-
declare function getMpasPageHtml(templatePath?: string): string;
|
|
13
|
-
declare const writeFileToJS: (filepath: string, content: string) => Promise<void>;
|
|
14
|
-
declare const writeFileToJSON: (filepath: string, content: string) => Promise<void>;
|
|
15
|
-
declare const getSrcPath: () => "src/" | "./";
|
|
16
|
-
|
|
17
|
-
export { copyFolder, generateDir, getAbsFile, getAbsFiles, getJavascriptfile, getMpasPageHtml, getSrcPath, loadJSON, mergeConfig, writeFileToJS, writeFileToJSON };
|