tnp-core 19.0.12 → 19.0.16
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/assets/shared/shared_folder_info.txt +1 -1
- package/browser/fesm2022/tnp-core.mjs +11 -0
- package/browser/fesm2022/tnp-core.mjs.map +1 -1
- package/browser/lib/core-models.d.ts +11 -0
- package/browser/package.json +1 -1
- package/cli.backend.js +2 -2
- package/client/fesm2022/tnp-core.mjs +11 -0
- package/client/fesm2022/tnp-core.mjs.map +1 -1
- package/client/lib/core-models.d.ts +11 -0
- package/client/package.json +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/core-models.d.ts +11 -0
- package/lib/core-models.js +11 -0
- package/lib/core-models.js.map +1 -1
- package/lib/helpers.d.ts +1 -1
- package/lib/node-chalk-mock.js +2 -2
- package/lib/node-path-mock.js +2 -2
- package/lib/required.d.ts +44 -0
- package/lib/required.js +76 -0
- package/lib/required.js.map +1 -0
- package/package.json +1 -1
- package/tmp-environment.json +4 -3
- package/websql/fesm2022/tnp-core.mjs +11 -0
- package/websql/fesm2022/tnp-core.mjs.map +1 -1
- package/websql/lib/core-models.d.ts +11 -0
- package/websql/package.json +1 -1
- package/env.d.ts +0 -2
- package/environments/angular-node-app/env.angular-node-app.__.d.ts +0 -3
- package/environments/angular-node-app/env.angular-node-app.dev.d.ts +0 -3
- package/environments/angular-node-app/env.angular-node-app.localhost.d.ts +0 -3
- package/environments/angular-node-app/env.angular-node-app.prod.d.ts +0 -3
- package/environments/angular-node-app/env.angular-node-app.stage.d.ts +0 -3
- package/environments/docs-webapp/env.docs-webapp.__.d.ts +0 -3
- package/environments/electron-app/env.electron-app.__.d.ts +0 -3
- package/environments/electron-app/env.electron-app.prod.d.ts +0 -3
- package/environments/mobile-app/env.mobile-app.__.d.ts +0 -3
- package/environments/mobile-app/env.mobile-app.prod.d.ts +0 -3
- package/environments/npm-lib-and-cli-tool/env.npm-lib-and-cli-tool.__.d.ts +0 -3
- package/environments/npm-lib-and-cli-tool/env.npm-lib-and-cli-tool.prod.d.ts +0 -3
- package/environments/vscode-plugin/env.vscode-plugin.__.d.ts +0 -6
- package/environments/vscode-plugin/env.vscode-plugin.prod.d.ts +0 -4
@@ -1,6 +1,6 @@
|
|
1
1
|
THIS FILE IS GENERATED - DO NOT MODIFY
|
2
2
|
|
3
|
-
Assets from this folder are being shipped with this npm package (tnp-core
|
3
|
+
Assets from this folder are being shipped with this npm package (tnp-core)
|
4
4
|
created from this project.
|
5
5
|
|
6
6
|
THIS FILE IS GENERATED - DO NOT MODIFY
|
@@ -717,6 +717,17 @@ var CoreModels;
|
|
717
717
|
* Demonstration environment specifically configured for client presentations and demos.
|
718
718
|
*/
|
719
719
|
DEMO: 'demo',
|
720
|
+
/**
|
721
|
+
* Documentation environment for hosting and managing project documentation.
|
722
|
+
*/
|
723
|
+
DOCS: 'docs',
|
724
|
+
/**
|
725
|
+
* Demonstration environment ONLY html files, typically used for static pages or documentation.
|
726
|
+
* This environment is not intended for dynamic content or server-side processing.
|
727
|
+
* Perfect to github pages or similar.
|
728
|
+
* It is not intended for production use and should not be used for any critical applications or services.
|
729
|
+
*/
|
730
|
+
STATIC_PAGES: 'static-pages',
|
720
731
|
/**
|
721
732
|
* Continuous Integration environment used by CI/CD pipelines for automated builds and deployments.
|
722
733
|
*/
|