tnp-core 18.0.11 → 18.0.15
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 +20 -20
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/browser/esm2022/lib/core-models.mjs +9 -1
- package/browser/esm2022/lib/utils.mjs +8 -1
- package/browser/fesm2022/tnp-core.mjs +15 -0
- package/browser/fesm2022/tnp-core.mjs.map +1 -1
- package/browser/lib/core-models.d.ts +2 -1
- package/browser/lib/utils.d.ts +5 -0
- package/browser/package.json +25 -0
- package/cli.backend.js +2 -2
- package/client/README.md +24 -24
- package/client/esm2022/lib/core-models.mjs +9 -1
- package/client/esm2022/lib/utils.mjs +8 -1
- package/client/fesm2022/tnp-core.mjs +15 -0
- package/client/fesm2022/tnp-core.mjs.map +1 -1
- package/client/lib/core-models.d.ts +2 -1
- package/client/lib/utils.d.ts +5 -0
- package/firedev.jsonc +64 -64
- package/lib/core-models.d.ts +2 -1
- package/lib/core-models.js +8 -0
- package/lib/core-models.js.map +1 -1
- package/lib/node-chalk-mock.js +2 -2
- package/lib/node-path-mock.js +2 -2
- package/lib/utils.d.ts +5 -0
- package/lib/utils.js +12 -0
- package/lib/utils.js.map +1 -1
- package/package.json +3 -3
- package/tmp-environment.json +9 -9
- package/websql/README.md +24 -24
- package/websql/esm2022/lib/core-models.mjs +9 -1
- package/websql/esm2022/lib/utils.mjs +8 -1
- package/websql/fesm2022/tnp-core.mjs +15 -0
- package/websql/fesm2022/tnp-core.mjs.map +1 -1
- package/websql/lib/core-models.d.ts +2 -1
- package/websql/lib/utils.d.ts +5 -0
- package/websql/package.json +25 -0
@@ -22,7 +22,8 @@ export declare namespace CoreModels {
|
|
22
22
|
export const PackageJsonDependencyObjArr: PackageJsonDependencyObj[];
|
23
23
|
export type LibraryType = 'angular' | 'typescript';
|
24
24
|
export type ReleaseType = 'major' | 'minor' | 'patch';
|
25
|
-
export type PreReleaseType = 'alpha' | 'beta' | 'rc';
|
25
|
+
export type PreReleaseType = 'alpha' | 'beta' | 'rc' | 'next';
|
26
|
+
export const NpmSpecialVersions: string[];
|
26
27
|
export type PROGRESS_DATA_TYPE = 'info' | 'error' | 'warning' | 'event';
|
27
28
|
export type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
28
29
|
export type PUSHTYPE = 'feat' | 'chore' | 'feature' | 'refactor' | 'perf' | 'styles' | 'ci' | 'build' | 'fix' | 'bugfix' | 'release' | 'docs';
|
package/websql/lib/utils.d.ts
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
// @ts-nocheck
|
2
2
|
import { CoreModels } from './core-models';
|
3
3
|
export declare namespace Utils {
|
4
|
+
/**
|
5
|
+
* Example:
|
6
|
+
* new RegExp(escapeStringForRegEx('a.b.c'),'g') => /a\.b\.c/g
|
7
|
+
*/
|
8
|
+
export const escapeStringForRegEx: (stringForRegExp: string) => string;
|
4
9
|
interface AttrJsoncProp {
|
5
10
|
name: string;
|
6
11
|
value?: any;
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"name": "tnp-core",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"peerDependencies": {
|
5
|
+
"@angular/common": "^13.2.0",
|
6
|
+
"@angular/core": "^13.2.0"
|
7
|
+
},
|
8
|
+
"dependencies": {
|
9
|
+
"tslib": "^2.3.0"
|
10
|
+
},
|
11
|
+
"module": "fesm2022/tnp-core.mjs",
|
12
|
+
"typings": "index.d.ts",
|
13
|
+
"exports": {
|
14
|
+
"./package.json": {
|
15
|
+
"default": "./package.json"
|
16
|
+
},
|
17
|
+
".": {
|
18
|
+
"types": "./index.d.ts",
|
19
|
+
"esm2022": "./esm2022/tnp-core.mjs",
|
20
|
+
"esm": "./esm2022/tnp-core.mjs",
|
21
|
+
"default": "./fesm2022/tnp-core.mjs"
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"sideEffects": false
|
25
|
+
}
|