@wavemaker/angular-codegen 11.4.1-next.141647 → 11.4.1-next.24708
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.
- angular-codegen/angular-app/angular.json +1003 -89
- angular-codegen/angular-app/build-scripts/post-build.js +0 -2
- angular-codegen/angular-app/package-lock.json +23237 -0
- angular-codegen/angular-app/package.json +46 -52
- angular-codegen/angular-app/src/polyfills.ts +39 -23
- angular-codegen/angular-app/tsconfig.json +3 -4
- angular-codegen/angular-app/tsconfig.web-app.json +2 -2
- angular-codegen/angular-app/wm-custom-webpack.config.js +11 -8
- angular-codegen/dependencies/expression-parser.cjs.js +10825 -9939
- angular-codegen/dependencies/pipe-provider.cjs.js +62969 -116447
- angular-codegen/dependencies/transpilation-mobile.cjs.js +29274 -45093
- angular-codegen/dependencies/transpilation-web.cjs.js +29274 -45093
- angular-codegen/package-lock.json +943 -6853
- angular-codegen/package.json +2 -7
- angular-codegen/src/gen-app-skeleton.js +1 -1
- angular-codegen/src/pages-util.js +1 -1
- angular-codegen/src/update-angular-json.js +1 -1
- angular-codegen/templates/app.module.ts.hbs +4 -24
- angular-codegen/templates/page/page.component.ts.hbs +5 -5
- angular-codegen/templates/page/page.module.ts.hbs +1 -1
- angular-codegen/templates/partial/partial.component.ts.hbs +5 -5
- angular-codegen/templates/partial/partial.module.ts.hbs +1 -1
- angular-codegen/.npmrc +0 -1
- angular-codegen/angular-app/.npmrc +0 -1
|
@@ -28,8 +28,6 @@ const generateHash = async (filepath) => {
|
|
|
28
28
|
return hash.digest('hex');
|
|
29
29
|
};
|
|
30
30
|
const generateHashForScripts = (updatedFilenames) => {
|
|
31
|
-
//from angular 12(IVY), scripts array in angular json, doesn't allow `@` symbol in the name/value
|
|
32
|
-
//so removed `@` from wavemaker.com in the file name and adding it back in the post-build.js file
|
|
33
31
|
const scriptsMap = {};
|
|
34
32
|
return new Promise(resolve => {
|
|
35
33
|
fs.readdir(opPath, (err, items) => {
|