tnp-config 18.0.22 → 18.0.24
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/README.md +17 -17
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/browser/esm2022/lib/config.mjs +1 -26
- package/browser/esm2022/lib/constants.mjs +3 -1
- package/browser/fesm2022/tnp-config.mjs +2 -25
- package/browser/fesm2022/tnp-config.mjs.map +1 -1
- package/browser/lib/config.d.ts +0 -2
- package/client/README.md +24 -24
- package/client/esm2022/lib/config.mjs +1 -26
- package/client/esm2022/lib/constants.mjs +3 -1
- package/client/fesm2022/tnp-config.mjs +2 -25
- package/client/fesm2022/tnp-config.mjs.map +1 -1
- package/client/lib/config.d.ts +0 -2
- package/index.js +15 -2
- package/index.js.map +1 -1
- package/lib/build-info._auto-generated_.js.map +1 -1
- package/lib/config.d.ts +1 -9
- package/lib/config.js +114 -65
- package/lib/config.js.map +1 -1
- package/lib/constants.js +38 -24
- package/lib/constants.js.map +1 -1
- package/lib/index._auto-generated_.js.map +1 -1
- package/lib/index.js +16 -3
- package/lib/index.js.map +1 -1
- package/migrations/index.js +15 -2
- package/migrations/index.js.map +1 -1
- package/migrations/migrations_index._auto-generated_.js.map +1 -1
- package/package.json +6 -48
- package/src.d.ts +1 -1
- package/taon.jsonc +13 -40
- package/tmp-environment.json +8 -377
- package/websql/README.md +24 -24
- package/websql/esm2022/lib/config.mjs +1 -26
- package/websql/esm2022/lib/constants.mjs +3 -1
- package/websql/fesm2022/tnp-config.mjs +2 -25
- package/websql/fesm2022/tnp-config.mjs.map +1 -1
- package/websql/lib/config.d.ts +0 -2
- package/browser/package.json +0 -25
- package/websql/package.json +0 -25
package/lib/constants.js
CHANGED
@@ -1,21 +1,27 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.FilesNames = exports.HOST_FILE_PATH = exports.PREFIXES = exports.BaselineSiteJoinprefix = exports.TAGS = exports.appRelatedFiles = exports.frontEndOnly = exports.notNeededForExportFiles = exports.frontendFiles = exports.backendWebsqlNodejsFiles = exports.backendNodejsOnlyFiles = exports.REGEX_REGION = exports.extAllowedToReplace = exports.extForStyles = exports.extForSassLikeFiles = exports.extTemplatesFiles = exports.extAllowedToExportAndReplaceTSJSCodeFiles = void 0;
|
4
|
-
var tslib_1 = require("tslib");
|
5
4
|
exports.extAllowedToExportAndReplaceTSJSCodeFiles = [
|
6
5
|
'js',
|
7
6
|
'ts',
|
8
7
|
'tsx',
|
9
|
-
].map(
|
10
|
-
exports.extTemplatesFiles = ['html'].map(
|
11
|
-
exports.extForSassLikeFiles = ['scss', 'sass'].map(
|
12
|
-
exports.extForStyles =
|
13
|
-
exports.
|
8
|
+
].map(ext => `.${ext}`);
|
9
|
+
exports.extTemplatesFiles = ['html'].map(ext => `.${ext}`);
|
10
|
+
exports.extForSassLikeFiles = ['scss', 'sass'].map(ext => `.${ext}`);
|
11
|
+
exports.extForStyles = [
|
12
|
+
...exports.extForSassLikeFiles,
|
13
|
+
...['css', 'less'].map(ext => `.${ext}`),
|
14
|
+
];
|
15
|
+
exports.extAllowedToReplace = [
|
16
|
+
...exports.extForStyles,
|
17
|
+
...exports.extTemplatesFiles,
|
18
|
+
...exports.extAllowedToExportAndReplaceTSJSCodeFiles,
|
19
|
+
];
|
14
20
|
exports.REGEX_REGION = {
|
15
21
|
TS_JS_SCSS_SASS: {
|
16
22
|
START: new RegExp('\\/\\/\\s*\\#region'),
|
17
23
|
END: new RegExp('\\/\\/\\s*\\#endregion'),
|
18
|
-
EXT:
|
24
|
+
EXT: [...exports.extAllowedToExportAndReplaceTSJSCodeFiles, ...exports.extForSassLikeFiles],
|
19
25
|
},
|
20
26
|
HTML: {
|
21
27
|
START: new RegExp('\\<\\!\\-\\-\\s*\\#region'),
|
@@ -31,8 +37,8 @@ exports.REGEX_REGION = {
|
|
31
37
|
exports.backendNodejsOnlyFiles = [
|
32
38
|
'backend.ts',
|
33
39
|
// '.repository.ts', // deprecated in typeorm
|
34
|
-
].map(
|
35
|
-
exports.backendWebsqlNodejsFiles = ['subscriber.ts', 'test.ts'].map(
|
40
|
+
].map(ext => `.${ext}`);
|
41
|
+
exports.backendWebsqlNodejsFiles = ['subscriber.ts', 'test.ts'].map(ext => `.${ext}`);
|
36
42
|
exports.frontendFiles = [
|
37
43
|
'browser.ts',
|
38
44
|
'component.ts',
|
@@ -60,28 +66,36 @@ exports.frontendFiles = [
|
|
60
66
|
'e2e.ts',
|
61
67
|
'cy.ts',
|
62
68
|
'e2e-spec.ts',
|
63
|
-
].map(
|
64
|
-
exports.notNeededForExportFiles = ['routes.ts'].map(
|
65
|
-
exports.frontEndOnly =
|
66
|
-
exports.
|
69
|
+
].map(ext => `.${ext}`);
|
70
|
+
exports.notNeededForExportFiles = ['routes.ts'].map(ext => `.${ext}`);
|
71
|
+
exports.frontEndOnly = [
|
72
|
+
...exports.extTemplatesFiles,
|
73
|
+
...exports.extForStyles,
|
74
|
+
...exports.frontendFiles,
|
75
|
+
];
|
76
|
+
exports.appRelatedFiles = [
|
77
|
+
...exports.extAllowedToReplace.map(ext => `app${ext}`),
|
78
|
+
...exports.frontendFiles.map(ext => `app${ext}`),
|
67
79
|
'app.models.ts',
|
68
80
|
'app.env.ts',
|
69
81
|
'app.constants.ts',
|
70
82
|
'app.hosts.ts',
|
71
83
|
'app.electron.ts',
|
72
|
-
|
84
|
+
'app.vscode.ts',
|
85
|
+
'app.mobile.ts',
|
86
|
+
];
|
73
87
|
exports.TAGS = {
|
74
|
-
BACKEND:
|
75
|
-
BACKEND_FUNC:
|
76
|
-
BROWSER:
|
77
|
-
WEBSQL_ONLY:
|
78
|
-
WEBSQL:
|
79
|
-
WEBSQL_FUNC:
|
80
|
-
NOT_FOR_NPM:
|
88
|
+
BACKEND: `@${'back' + 'end'}`,
|
89
|
+
BACKEND_FUNC: `@${'back' + 'endFunc'}`,
|
90
|
+
BROWSER: `@${'brow' + 'ser'}`,
|
91
|
+
WEBSQL_ONLY: `@${'web' + 'sqlOnly'}`,
|
92
|
+
WEBSQL: `@${'web' + 'sql'}`,
|
93
|
+
WEBSQL_FUNC: `@${'web' + 'sqlFunc'}`,
|
94
|
+
NOT_FOR_NPM: `@${'not' + 'ForNpm'}`,
|
81
95
|
CUT_CODE_IF_TRUE: '@cutCode' + 'IfTrue',
|
82
96
|
CUT_CODE_IF_FALSE: '@cutCode' + 'IfFalse',
|
83
|
-
COMMENT_REGION:
|
84
|
-
COMMENT_END_REGION:
|
97
|
+
COMMENT_REGION: `//${'#reg' + 'ion'}`,
|
98
|
+
COMMENT_END_REGION: `//${'#end' + 'region'}`,
|
85
99
|
};
|
86
100
|
exports.BaselineSiteJoinprefix = '__';
|
87
101
|
exports.PREFIXES = {
|
@@ -90,7 +104,7 @@ exports.PREFIXES = {
|
|
90
104
|
ORIGINAL: '____ORIGINAL____',
|
91
105
|
RESTORE_NPM: '____',
|
92
106
|
};
|
93
|
-
|
107
|
+
let HOST_FILE_PATH = '';
|
94
108
|
exports.HOST_FILE_PATH = HOST_FILE_PATH;
|
95
109
|
//#region @backend
|
96
110
|
exports.HOST_FILE_PATH = HOST_FILE_PATH =
|
package/lib/constants.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":[""],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["c:/Users/darek/projects/npm/taon-dev/tnp-config/src/lib/constants.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":"AAAA,cAAc;AACd,8CAA8C;AAC9C,2BAA2B;AAC3B,uDAAuD;AACvD,2CAA2C"}
|
1
|
+
{"version":3,"file":"index._auto-generated_.js","sourceRoot":"","sources":["c:/Users/darek/projects/npm/taon-dev/tnp-config/src/lib/index._auto-generated_.ts"],"names":[],"mappings":"AAAA,cAAc;AACd,8CAA8C;AAC9C,2BAA2B;AAC3B,uDAAuD;AACvD,2CAA2C"}
|
package/lib/index.js
CHANGED
@@ -1,6 +1,19 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
|
4
|
-
|
5
|
-
tslib_1.__exportStar(require("./config"), exports);
|
17
|
+
__exportStar(require("./constants"), exports);
|
18
|
+
__exportStar(require("./config"), exports);
|
6
19
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["c:/Users/darek/projects/npm/taon-dev/tnp-config/src/lib/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAE5B,2CAAyB"}
|
package/migrations/index.js
CHANGED
@@ -1,6 +1,19 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
var tslib_1 = require("tslib");
|
4
17
|
//@ts-nocheck
|
5
|
-
|
18
|
+
__exportStar(require("./migrations_index._auto-generated_"), exports);
|
6
19
|
//# sourceMappingURL=index.js.map
|
package/migrations/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["c:/Users/darek/projects/npm/taon-dev/tnp-config/src/migrations/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,aAAa;AACb,sEAAoD"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"migrations_index._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":"AAAA,yCAAyC;AAEzC,yCAAyC;AAEzC,yCAAyC"}
|
1
|
+
{"version":3,"file":"migrations_index._auto-generated_.js","sourceRoot":"","sources":["c:/Users/darek/projects/npm/taon-dev/tnp-config/src/migrations/migrations_index._auto-generated_.ts"],"names":[],"mappings":"AAAA,yCAAyC;AAEzC,yCAAyC;AAEzC,yCAAyC"}
|
package/package.json
CHANGED
@@ -1,52 +1,10 @@
|
|
1
1
|
{
|
2
|
-
"
|
3
|
-
|
4
|
-
"README.md"
|
5
|
-
],
|
6
|
-
"overrided": {
|
7
|
-
"ignoreDepsPattern": [],
|
8
|
-
"includeAsDev": [],
|
9
|
-
"includeOnly": [
|
10
|
-
"taon-core"
|
11
|
-
],
|
12
|
-
"dependencies": {},
|
13
|
-
"linkedFolders": [],
|
14
|
-
"npmFixes": []
|
15
|
-
},
|
16
|
-
"smartContainerBuildTarget": "",
|
17
|
-
"linkedRepos": [],
|
18
|
-
"libReleaseOptions": {
|
19
|
-
"nodts": false,
|
20
|
-
"obscure": false,
|
21
|
-
"ugly": false,
|
22
|
-
"includeNodeModules": false,
|
23
|
-
"cliBuildNoDts": false,
|
24
|
-
"cliBuildObscure": false,
|
25
|
-
"cliBuildIncludeNodeModules": false,
|
26
|
-
"cliBuildUglify": false
|
27
|
-
},
|
28
|
-
"smartContainerTarget": "",
|
29
|
-
"type": "isomorphic-lib",
|
30
|
-
"isCoreProject": false,
|
31
|
-
"useFramework": false,
|
32
|
-
"required": [],
|
33
|
-
"version": "v18",
|
34
|
-
"additionalNpmNames": [
|
35
|
-
"taon-config"
|
36
|
-
],
|
37
|
-
"isGenerated": false,
|
38
|
-
"requiredServers": [],
|
39
|
-
"license": "MIT",
|
40
|
-
"private": false,
|
41
|
-
"main": "index.js",
|
42
|
-
"workerPlugins": {}
|
43
|
-
},
|
44
|
-
"dependencies": {},
|
45
|
-
"devDependencies": {},
|
2
|
+
"name": "tnp-config",
|
3
|
+
"version": "18.0.24",
|
46
4
|
"license": "MIT",
|
5
|
+
"author": "Dariusz Filipiak",
|
47
6
|
"private": false,
|
48
|
-
"
|
49
|
-
"
|
50
|
-
"
|
51
|
-
"main": "dist/app.electron.js"
|
7
|
+
"dependencies": {},
|
8
|
+
"bin": {},
|
9
|
+
"peerDependencies": {}
|
52
10
|
}
|
package/src.d.ts
CHANGED
package/taon.jsonc
CHANGED
@@ -1,40 +1,13 @@
|
|
1
|
-
{
|
2
|
-
"resources": ["README.md"],
|
3
|
-
|
4
|
-
"
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
"
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
"linkedRepos": [],
|
15
|
-
|
16
|
-
"libReleaseOptions": {
|
17
|
-
"nodts": false,
|
18
|
-
"obscure": false,
|
19
|
-
"ugly": false,
|
20
|
-
"includeNodeModules": false,
|
21
|
-
"cliBuildNoDts": false,
|
22
|
-
"cliBuildObscure": false,
|
23
|
-
"cliBuildIncludeNodeModules": false,
|
24
|
-
"cliBuildUglify": false
|
25
|
-
},
|
26
|
-
|
27
|
-
"smartContainerTarget": "",
|
28
|
-
"type": "isomorphic-lib",
|
29
|
-
"isCoreProject": false,
|
30
|
-
"useFramework": false,
|
31
|
-
"required": [],
|
32
|
-
"version": "v18",
|
33
|
-
"additionalNpmNames": ["taon-config"],
|
34
|
-
"isGenerated": false,
|
35
|
-
"requiredServers": [],
|
36
|
-
"license": "MIT",
|
37
|
-
"private": false,
|
38
|
-
"main": "index.js",
|
39
|
-
"workerPlugins": {}
|
40
|
-
}
|
1
|
+
{
|
2
|
+
"resources": ["README.md"],
|
3
|
+
"type": "isomorphic-lib",
|
4
|
+
"version": "v18",
|
5
|
+
"dependenciesNamesForNpmLib": ["taon-core"],
|
6
|
+
"additionalNpmNames": ["taon-config"],
|
7
|
+
"isCoreProject": false,
|
8
|
+
|
9
|
+
"packageJsonOverride": {
|
10
|
+
"license": "MIT",
|
11
|
+
"private": false
|
12
|
+
}
|
13
|
+
}
|