tnp 21.0.83 → 21.0.84
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/bin/tnp +5 -5
- package/bin/tnp-debug +5 -5
- package/bin/tnp-debug-brk +4 -4
- package/browser/fesm2022/tnp-browser.mjs +8 -2
- package/browser/fesm2022/tnp-browser.mjs.map +1 -1
- package/browser/package.json +1 -1
- package/browser/types/tnp-browser.d.ts +3 -2
- package/browser-prod/fesm2022/tnp-browser.mjs +8 -2
- package/browser-prod/fesm2022/tnp-browser.mjs.map +1 -1
- package/browser-prod/package.json +1 -1
- package/browser-prod/types/tnp-browser.d.ts +3 -2
- package/cli.js +23 -19
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/constants.d.ts +3 -2
- package/lib/constants.js +7 -3
- package/lib/constants.js.map +1 -1
- package/lib/migrations/1737301724542_addingSampleData.d.ts +1 -1
- package/lib/package.json +1 -1
- package/lib/project/abstract/artifacts/angular-node-app/artifact-angular-node-app.js +4 -4
- package/lib/project/abstract/artifacts/angular-node-app/artifact-angular-node-app.js.map +1 -1
- package/lib/project/abstract/taon-worker/deployments/deployments.context.d.ts +7 -7
- package/lib/project/abstract/taon-worker/instances/instances.context.d.ts +7 -7
- package/lib/project/abstract/taon-worker/processes/processes.context.d.ts +7 -7
- package/lib/project/abstract/taon-worker/taon.context.d.ts +7 -7
- package/lib/project/abstract/taon-worker/taon.controller.d.ts +1 -1
- package/lib/project/abstract/taon-worker/traefik/traefik.provider.js +8 -8
- package/lib/project/abstract/taon-worker/traefik/traefik.provider.js.map +1 -1
- package/lib/project/index.js +2 -2
- package/lib-prod/build-info._auto-generated_.ts +1 -1
- package/lib-prod/constants.ts +10 -9
- package/lib-prod/package.json +1 -1
- package/lib-prod/project/abstract/artifacts/angular-node-app/artifact-angular-node-app.ts +4 -4
- package/lib-prod/project/abstract/taon-worker/traefik/traefik.provider.ts +8 -8
- package/lib-prod/project/index.ts +1 -1
- package/package.json +1 -1
- package/websql/fesm2022/tnp-websql.mjs +8 -2
- package/websql/fesm2022/tnp-websql.mjs.map +1 -1
- package/websql/package.json +1 -1
- package/websql/types/tnp-websql.d.ts +3 -2
- package/websql-prod/fesm2022/tnp-websql.mjs +8 -2
- package/websql-prod/fesm2022/tnp-websql.mjs.map +1 -1
- package/websql-prod/package.json +1 -1
- package/websql-prod/types/tnp-websql.d.ts +3 -2
package/bin/tnp
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
#!/usr/bin/env -S node --no-deprecation
|
|
2
|
-
//#region @backend
|
|
3
|
-
// --stack-trace-limit=10000
|
|
4
|
-
require('./start');
|
|
5
|
-
//#endregion
|
|
1
|
+
#!/usr/bin/env -S node --no-deprecation
|
|
2
|
+
//#region @backend
|
|
3
|
+
// --stack-trace-limit=10000
|
|
4
|
+
require('./start');
|
|
5
|
+
//#endregion
|
package/bin/tnp-debug
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
#!/usr/bin/env -S node --inspect --stack-trace-limit=10000 --no-deprecation
|
|
2
|
-
//#region @backend
|
|
3
|
-
// --stack-trace-limit=10000
|
|
4
|
-
require('./start');
|
|
5
|
-
//#endregion
|
|
1
|
+
#!/usr/bin/env -S node --inspect --stack-trace-limit=10000 --no-deprecation
|
|
2
|
+
//#region @backend
|
|
3
|
+
// --stack-trace-limit=10000
|
|
4
|
+
require('./start');
|
|
5
|
+
//#endregion
|
package/bin/tnp-debug-brk
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env -S node --inspect-brk --stack-trace-limit=10000 --no-deprecation
|
|
2
|
-
//#region @backend
|
|
3
|
-
require('./start');
|
|
4
|
-
//#endregion
|
|
1
|
+
#!/usr/bin/env -S node --inspect-brk --stack-trace-limit=10000 --no-deprecation
|
|
2
|
+
//#region @backend
|
|
3
|
+
require('./start');
|
|
4
|
+
//#endregion
|
|
@@ -28,7 +28,7 @@ const CURRENT_PACKAGE_TAON_VERSION = 'v21';
|
|
|
28
28
|
/**
|
|
29
29
|
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
30
30
|
*/
|
|
31
|
-
const CURRENT_PACKAGE_VERSION = '21.0.
|
|
31
|
+
const CURRENT_PACKAGE_VERSION = '21.0.84';
|
|
32
32
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
33
33
|
|
|
34
34
|
// import type { Project } from './project/abstract/project';
|
|
@@ -128,7 +128,13 @@ const OVERRIDE_FROM_TNP = [
|
|
|
128
128
|
'repository',
|
|
129
129
|
'scripts',
|
|
130
130
|
];
|
|
131
|
-
|
|
131
|
+
const globalSpinner = {
|
|
132
|
+
get instace() {
|
|
133
|
+
/* */
|
|
134
|
+
/* */
|
|
135
|
+
return (void 0);
|
|
136
|
+
},
|
|
137
|
+
};
|
|
132
138
|
const USE_IN_HOST_CONFIG_FULL_CONTEXT_PATH = false;
|
|
133
139
|
const MIGRATION_CONST_PREFIX = 'MIGRATIONS_CLASSES_FOR_';
|
|
134
140
|
let taonUsingBundledCliMode = false;
|