tnp 13.0.51 → 13.0.62
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-debug +1 -1
- package/browser.js +1 -0
- package/client/package.json +237 -24
- package/client.js +1 -0
- package/global-typings.d.ts +1 -1
- package/index.js +1 -1
- package/lib/project/features/files-recreation/files-structure.backend.d.ts +96 -1
- package/lib/project/features/npm-packages/npm-packages.d.ts +2 -2
- package/lib/project/features/singular-build.backend.d.ts +3 -1
- package/lib/project/project-specyfic/project-isomorphic-lib.d.ts +1 -0
- package/lib/scripts/DEPENDENCIES-MANAGEMENT/DEPS.backend.d.ts +1 -4
- package/lib/scripts/VSCODE-EXT/OPEN.backend.d.ts +2 -0
- package/lib/scripts/index.d.ts +3 -4
- package/package.json +3 -3
- package/package.json_tnp.json5 +29 -29
- package/tmp-environment.json +60 -60
- package/browser/README.md +0 -24
- package/browser/esm2020/lib/index.mjs +0 -5
- package/browser/esm2020/lib/project/abstract/feature-for-project.mjs +0 -6
- package/browser/esm2020/lib/project/abstract/index.mjs +0 -5
- package/browser/esm2020/lib/project/abstract/project/index.mjs +0 -2
- package/browser/esm2020/lib/project/abstract/project/project.mjs +0 -189
- package/browser/esm2020/lib/project/features/package-json/index.mjs +0 -2
- package/browser/esm2020/lib/project/features/package-json/package-json-file.mjs +0 -310
- package/browser/esm2020/lib/project/features/package-json/package-json.mjs +0 -72
- package/browser/esm2020/lib/project/index.mjs +0 -14
- package/browser/esm2020/public-api.mjs +0 -2
- package/browser/esm2020/tnp.mjs +0 -5
- package/browser/fesm2015/tnp.mjs +0 -281
- package/browser/fesm2015/tnp.mjs.map +0 -1
- package/browser/fesm2020/tnp.mjs +0 -281
- package/browser/fesm2020/tnp.mjs.map +0 -1
- package/browser/lib/index.d.ts +0 -1
- package/browser/lib/project/abstract/feature-for-project.d.ts +0 -5
- package/browser/lib/project/abstract/index.d.ts +0 -2
- package/browser/lib/project/abstract/project/index.d.ts +0 -1
- package/browser/lib/project/abstract/project/project.d.ts +0 -9
- package/browser/lib/project/features/package-json/index.d.ts +0 -1
- package/browser/lib/project/features/package-json/package-json-file.d.ts +0 -24
- package/browser/lib/project/features/package-json/package-json.d.ts +0 -5
- package/browser/lib/project/index.d.ts +0 -2
- package/browser/package.json +0 -31
- package/browser/public-api.d.ts +0 -1
- package/browser/tnp.d.ts +0 -5
- package/client/README.md +0 -24
- package/client/esm2020/lib/index.mjs +0 -5
- package/client/esm2020/lib/project/abstract/feature-for-project.mjs +0 -6
- package/client/esm2020/lib/project/abstract/index.mjs +0 -5
- package/client/esm2020/lib/project/abstract/project/index.mjs +0 -2
- package/client/esm2020/lib/project/abstract/project/project.mjs +0 -189
- package/client/esm2020/lib/project/features/package-json/index.mjs +0 -2
- package/client/esm2020/lib/project/features/package-json/package-json-file.mjs +0 -310
- package/client/esm2020/lib/project/features/package-json/package-json.mjs +0 -72
- package/client/esm2020/lib/project/index.mjs +0 -14
- package/client/esm2020/public-api.mjs +0 -2
- package/client/esm2020/tnp.mjs +0 -5
- package/client/fesm2015/tnp.mjs +0 -281
- package/client/fesm2015/tnp.mjs.map +0 -1
- package/client/fesm2020/tnp.mjs +0 -281
- package/client/fesm2020/tnp.mjs.map +0 -1
- package/client/lib/index.d.ts +0 -1
- package/client/lib/project/abstract/feature-for-project.d.ts +0 -5
- package/client/lib/project/abstract/index.d.ts +0 -2
- package/client/lib/project/abstract/project/index.d.ts +0 -1
- package/client/lib/project/abstract/project/project.d.ts +0 -9
- package/client/lib/project/features/package-json/index.d.ts +0 -1
- package/client/lib/project/features/package-json/package-json-file.d.ts +0 -24
- package/client/lib/project/features/package-json/package-json.d.ts +0 -5
- package/client/lib/project/index.d.ts +0 -2
- package/client/public-api.d.ts +0 -1
- package/client/tnp.d.ts +0 -5
package/bin/tnp-debug
CHANGED
package/browser.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log('tnp only for backend')
|
package/client/package.json
CHANGED
|
@@ -1,31 +1,244 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tnp",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"version": "13.0.62",
|
|
4
|
+
"bin": {
|
|
5
|
+
"tnp": "bin/tnp",
|
|
6
|
+
"tnp-debug": "bin/tnp-debug",
|
|
7
|
+
"tnp-debug-brk": "bin/tnp-debug-brk"
|
|
7
8
|
},
|
|
8
9
|
"dependencies": {
|
|
9
|
-
"
|
|
10
|
+
"@angular-devkit/build-angular": "~13.2.5",
|
|
11
|
+
"@angular/animations": "~13.2.0",
|
|
12
|
+
"@angular/cdk": "~13.2.4",
|
|
13
|
+
"@angular/cli": "~13.2.5",
|
|
14
|
+
"@angular/common": "~13.2.0",
|
|
15
|
+
"@angular/compiler": "~13.2.0",
|
|
16
|
+
"@angular/compiler-cli": "~13.2.0",
|
|
17
|
+
"@angular/core": "~13.2.0",
|
|
18
|
+
"@angular/flex-layout": "~13.0.0-beta.38",
|
|
19
|
+
"@angular/forms": "~13.2.0",
|
|
20
|
+
"@angular/material": "~13.2.4",
|
|
21
|
+
"@angular/platform-browser": "~13.2.0",
|
|
22
|
+
"@angular/platform-browser-dynamic": "~13.2.0",
|
|
23
|
+
"@angular/pwa": "~13.2.5",
|
|
24
|
+
"@angular/router": "~13.2.0",
|
|
25
|
+
"@angular/service-worker": "~13.2.0",
|
|
26
|
+
"@mdi/js": "6.5.95",
|
|
27
|
+
"@ngrx/component-store": "~13.0.2",
|
|
28
|
+
"@ngrx/data": "~13.0.2",
|
|
29
|
+
"@ngrx/effects": "~13.0.2",
|
|
30
|
+
"@ngrx/entity": "~13.0.2",
|
|
31
|
+
"@ngrx/router-store": "~13.0.2",
|
|
32
|
+
"@ngrx/schematics": "~13.0.2",
|
|
33
|
+
"@ngrx/store": "~13.0.2",
|
|
34
|
+
"@ngrx/store-devtools": "~13.0.2",
|
|
35
|
+
"@ngx-formly/bootstrap": "6.0.0-next.8",
|
|
36
|
+
"@ngx-formly/core": "6.0.0-next.8",
|
|
37
|
+
"@ngx-formly/ionic": "6.0.0-next.8",
|
|
38
|
+
"@ngx-formly/material": "6.0.0-next.8",
|
|
39
|
+
"@ngx-loading-bar/core": "6.0.2",
|
|
40
|
+
"@ngx-loading-bar/http-client": "6.0.2",
|
|
41
|
+
"@ngx-loading-bar/router": "6.0.2",
|
|
42
|
+
"@ngx-translate/core": "14.0.0",
|
|
43
|
+
"@ngx-translate/http-loader": "7.0.0",
|
|
44
|
+
"@swimlane/ngx-datatable": "20.0.0",
|
|
45
|
+
"@types/chai": "4.1.2",
|
|
46
|
+
"@types/chokidar": "2.1.3",
|
|
47
|
+
"@types/dateformat": "1.0.1",
|
|
48
|
+
"@types/diff": "3.2.2",
|
|
49
|
+
"@types/express": "4.11.0",
|
|
50
|
+
"@types/express-fileupload": "0.1.1",
|
|
51
|
+
"@types/fs-extra": "7.0.0",
|
|
52
|
+
"@types/glob": "5.0.35",
|
|
53
|
+
"@types/http-proxy": "1.16.0",
|
|
54
|
+
"@types/http-proxy-middleware": "0.19.2",
|
|
55
|
+
"@types/inquirer": "7.3.1",
|
|
56
|
+
"@types/jasmine": "3.10.0",
|
|
57
|
+
"@types/json-stringify-safe": "5.0.0",
|
|
58
|
+
"@types/json5": "0.0.29",
|
|
59
|
+
"@types/lockfile": "1.0.0",
|
|
60
|
+
"@types/lodash": "4.14.92",
|
|
61
|
+
"@types/lowdb": "1.0.6",
|
|
62
|
+
"@types/mocha": "5.2.5",
|
|
63
|
+
"@types/node": "12.11.1",
|
|
64
|
+
"@types/node-notifier": "5.4.0",
|
|
65
|
+
"@types/oauth2orize": "1.8.0",
|
|
66
|
+
"@types/password-hash": "1.2.19",
|
|
67
|
+
"@types/progress": "2.0.3",
|
|
68
|
+
"@types/q": "1.5.5",
|
|
69
|
+
"@types/rimraf": "2.0.2",
|
|
70
|
+
"@types/semver": "6.0.1",
|
|
71
|
+
"@types/systeminformation": "3.23.0",
|
|
72
|
+
"@types/vinyl": "2.0.2",
|
|
73
|
+
"@types/watch": "1.0.0",
|
|
74
|
+
"accepts": "1.3.4",
|
|
75
|
+
"axios": "0.17.1",
|
|
76
|
+
"babel-cli": "6.26.0",
|
|
77
|
+
"babel-core": "6.25.0",
|
|
78
|
+
"babel-preset-env": "1.7.0",
|
|
79
|
+
"babel-preset-es2015": "6.24.1",
|
|
80
|
+
"background-worker-process": "~13.0.13",
|
|
81
|
+
"bcryptjs": "2.4.3",
|
|
82
|
+
"body-parser": "1.18.2",
|
|
83
|
+
"bootstrap": "5.1.3",
|
|
84
|
+
"buffer-shims": "1.0.0",
|
|
85
|
+
"callsite-record": "4.1.3",
|
|
86
|
+
"chai": "4.2.0",
|
|
87
|
+
"chalk": "2.3.2",
|
|
88
|
+
"check-node-version": "3.2.0",
|
|
89
|
+
"cheerio": "1.0.0-rc.3",
|
|
90
|
+
"chokidar": "3.5.1",
|
|
91
|
+
"circular-json": "0.5.1",
|
|
92
|
+
"command-exists": "1.2.2",
|
|
93
|
+
"compression": "1.7.4",
|
|
94
|
+
"concurrently": "3.5.1",
|
|
95
|
+
"content-type": "1.0.4",
|
|
96
|
+
"conventional-changelog-cli": "2.1.1",
|
|
97
|
+
"cookie-parser": "1.4.3",
|
|
98
|
+
"copy-paste": "1.3.0",
|
|
99
|
+
"cors": "2.8.4",
|
|
100
|
+
"cpr": "3.0.1",
|
|
101
|
+
"cross-env": "7.0.2",
|
|
102
|
+
"cross-spawn": "7.0.3",
|
|
103
|
+
"dateformat": "3.0.3",
|
|
104
|
+
"detect-mocha": "0.1.0",
|
|
105
|
+
"diff": "3.2.0",
|
|
106
|
+
"element-resize-detector": "1.1.15",
|
|
107
|
+
"enquirer": "2.3.0",
|
|
108
|
+
"enum-values": "1.2.1",
|
|
109
|
+
"errorhandler": "1.5.0",
|
|
110
|
+
"eslint": "7.13.0",
|
|
111
|
+
"eslint-plugin-import": "2.22.1",
|
|
112
|
+
"eslint-plugin-jsdoc": "30.7.8",
|
|
113
|
+
"eslint-plugin-prefer-arrow": "1.2.2",
|
|
114
|
+
"express": "4.16.3",
|
|
115
|
+
"express-fileupload": "0.4.0",
|
|
116
|
+
"fbgraph": "1.4.1",
|
|
117
|
+
"file-loader": "1.1.5",
|
|
118
|
+
"firedev-crud": "~13.0.18",
|
|
119
|
+
"firedev-crud-deamon": "~13.0.12",
|
|
120
|
+
"firedev-ports": "~13.0.13",
|
|
121
|
+
"firedev-storage": "~13.0.9",
|
|
122
|
+
"fkill": "6.1.0",
|
|
123
|
+
"font-awesome": "4.7.0",
|
|
124
|
+
"fs-extra": "8.1.0",
|
|
125
|
+
"fuzzy": "0.1.3",
|
|
126
|
+
"glob": "7.1.2",
|
|
127
|
+
"gulp": "3.9.1",
|
|
128
|
+
"hostile": "1.3.3",
|
|
129
|
+
"http-proxy": "1.16.2",
|
|
130
|
+
"http-proxy-middleware": "0.19.1",
|
|
131
|
+
"http-server": "0.11.1",
|
|
132
|
+
"incremental-compiler": "~13.0.11",
|
|
133
|
+
"inquirer": "7.3.3",
|
|
134
|
+
"inquirer-autocomplete-prompt": "1.3.0",
|
|
135
|
+
"is-elevated": "3.0.0",
|
|
136
|
+
"istanbul-instrumenter-loader": "2.0.0",
|
|
137
|
+
"jasmine-core": "4.0.0",
|
|
138
|
+
"jscodeshift": "0.6.3",
|
|
139
|
+
"json-stringify-safe": "5.0.1",
|
|
140
|
+
"json10": "~13.0.10",
|
|
141
|
+
"json10-writer": "~13.0.10",
|
|
142
|
+
"json5": "2.1.3",
|
|
143
|
+
"json5-writer": "0.2.0",
|
|
144
|
+
"karma": "6.3.0",
|
|
145
|
+
"karma-chrome-launcher": "3.1.0",
|
|
146
|
+
"karma-cli": "1.0.1",
|
|
147
|
+
"karma-coverage": "2.1.0",
|
|
148
|
+
"karma-jasmine": "4.0.0",
|
|
149
|
+
"karma-jasmine-html-reporter": "1.7.0",
|
|
150
|
+
"lnk": "1.0.1",
|
|
151
|
+
"lockfile": "1.0.4",
|
|
152
|
+
"lodash": "4.17.4",
|
|
153
|
+
"lodash-walk-object": "~13.0.10",
|
|
154
|
+
"lodash.get": ">= 4",
|
|
155
|
+
"lodash.isequal": ">= 4",
|
|
156
|
+
"lodash.merge": ">= 4",
|
|
157
|
+
"lodash.set": ">= 4",
|
|
158
|
+
"lowdb": "1.0.0",
|
|
159
|
+
"magic-renamer": "~13.0.6",
|
|
160
|
+
"material-design-icons": "3.0.1",
|
|
161
|
+
"method-override": "2.3.10",
|
|
162
|
+
"minimist": "1.2.0",
|
|
163
|
+
"mkdirp": "0.5.1",
|
|
164
|
+
"mocha": "5.2.0",
|
|
165
|
+
"moment": "2.22.2",
|
|
166
|
+
"morphi": "~13.0.21",
|
|
167
|
+
"ng-packagr": "13.0.0",
|
|
168
|
+
"ng-talkback": "~13.0.8",
|
|
169
|
+
"ng2-logger": "~13.0.10",
|
|
170
|
+
"ng2-rest": "~13.0.13",
|
|
171
|
+
"ng4-icons": "~13.0.11",
|
|
172
|
+
"ng4-modal": "~13.0.13",
|
|
173
|
+
"ngx-bootstrap": "8.0.0",
|
|
174
|
+
"ngx-editor": "12.2.1",
|
|
175
|
+
"ngx-moment": "6.0.2",
|
|
176
|
+
"ngx-pipes": "3.0.0",
|
|
177
|
+
"ngx-store": "3.1.1",
|
|
178
|
+
"ngx-toastr": "14.2.2",
|
|
179
|
+
"ngx-wig": "13.0.3",
|
|
180
|
+
"node-cli-tester": "~13.0.8",
|
|
181
|
+
"node-localstorage": "2.1.6",
|
|
182
|
+
"node-notifier": "6.0.0",
|
|
183
|
+
"nodemon": "1.14.11",
|
|
184
|
+
"npm-get-dependents": "1.0.1",
|
|
185
|
+
"npm-run": "4.1.2",
|
|
186
|
+
"omelette": "0.4.5",
|
|
187
|
+
"open": "7.2.1",
|
|
188
|
+
"ora": "3.4.0",
|
|
189
|
+
"passport": "0.3.2",
|
|
190
|
+
"passport-http-bearer": "1.0.1",
|
|
191
|
+
"password-hash": "1.2.2",
|
|
192
|
+
"portfinder": "1.0.21",
|
|
193
|
+
"prettier": "2.5.1",
|
|
194
|
+
"progress": "2.0.3",
|
|
195
|
+
"prompts": "0.1.8",
|
|
196
|
+
"ps-list": "6.1.0",
|
|
197
|
+
"ps-node": "0.1.6",
|
|
198
|
+
"q": "1.5.1",
|
|
199
|
+
"randomcolor": "0.5.3",
|
|
200
|
+
"record-replay-req-res-scenario": "~13.0.9",
|
|
201
|
+
"reflect-metadata": "0.1.10",
|
|
202
|
+
"rimraf": "2.6.2",
|
|
203
|
+
"rxjs": "~7.5.0",
|
|
204
|
+
"semver": "6.3.0",
|
|
205
|
+
"simple-git": "1.96.0",
|
|
206
|
+
"sloc": "0.2.0",
|
|
207
|
+
"socket.io": "2.4.1",
|
|
208
|
+
"sort-package-json": "1.11.0",
|
|
209
|
+
"string-similarity": "4.0.2",
|
|
210
|
+
"sudo-block": "3.0.0",
|
|
211
|
+
"systeminformation": "3.45.7",
|
|
212
|
+
"task.js": "0.1.5",
|
|
213
|
+
"tnp-cli": "~13.0.11",
|
|
214
|
+
"tnp-config": "~13.0.15",
|
|
215
|
+
"tnp-core": "~13.0.34",
|
|
216
|
+
"tnp-db": "~13.0.20",
|
|
217
|
+
"tnp-helpers": "~13.0.18",
|
|
218
|
+
"tnp-models": "~13.0.13",
|
|
219
|
+
"tnp-ui": "~13.0.12",
|
|
220
|
+
"ts-debug": "1.3.0",
|
|
221
|
+
"ts-loader": "2.3.1",
|
|
222
|
+
"ts-node": "10.7.0",
|
|
223
|
+
"tslib": "~2.3.0",
|
|
224
|
+
"typeorm": "~0.2.45",
|
|
225
|
+
"typescript": "~4.5.2",
|
|
226
|
+
"typescript-class-helpers": "~13.0.10",
|
|
227
|
+
"typescript-formatter": "~7.2.2",
|
|
228
|
+
"underscore": "1.9.1",
|
|
229
|
+
"uuid": "8.3.2",
|
|
230
|
+
"validator": "9.2.0",
|
|
231
|
+
"vpn-split": "~13.0.13",
|
|
232
|
+
"vscode": "1.1.37",
|
|
233
|
+
"wait-on": "5.0.1",
|
|
234
|
+
"watch": "1.0.2",
|
|
235
|
+
"zone.js": "~0.11.4"
|
|
10
236
|
},
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
"fesm2020": "fesm2020/tnp.mjs",
|
|
15
|
-
"fesm2015": "fesm2015/tnp.mjs",
|
|
16
|
-
"typings": "tnp.d.ts",
|
|
17
|
-
"exports": {
|
|
18
|
-
"./package.json": {
|
|
19
|
-
"default": "./package.json"
|
|
20
|
-
},
|
|
21
|
-
".": {
|
|
22
|
-
"types": "./tnp.d.ts",
|
|
23
|
-
"esm2020": "./esm2020/tnp.mjs",
|
|
24
|
-
"es2020": "./fesm2020/tnp.mjs",
|
|
25
|
-
"es2015": "./fesm2015/tnp.mjs",
|
|
26
|
-
"node": "./fesm2015/tnp.mjs",
|
|
27
|
-
"default": "./fesm2020/tnp.mjs"
|
|
28
|
-
}
|
|
237
|
+
"lastBuildTagHash": "fef24894eae285d3a417d36869a7f72a08196b26",
|
|
238
|
+
"scripts": {
|
|
239
|
+
"activate": "npm i --force && firedev dedupe && npm-run tsc && sudo firedev link && tnp link:core && tnp bd && tnp env:install"
|
|
29
240
|
},
|
|
30
|
-
"
|
|
241
|
+
"license": "MIT",
|
|
242
|
+
"private": false,
|
|
243
|
+
"devDependencies": {}
|
|
31
244
|
}
|
package/client.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log('tnp only for backend')
|