tnp-core 19.0.34 → 19.0.37

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.
Files changed (62) hide show
  1. package/browser/fesm2022/tnp-core.mjs +6 -19
  2. package/browser/fesm2022/tnp-core.mjs.map +1 -1
  3. package/browser/lib/utils.d.ts +5 -0
  4. package/browser/package.json +1 -1
  5. package/cli.backend.js +2 -2
  6. package/client/package.json +1 -1
  7. package/lib/build-info._auto-generated_.d.ts +1 -1
  8. package/lib/build-info._auto-generated_.js +1 -1
  9. package/lib/env/env.angular-node-app.d.ts +13 -0
  10. package/lib/env/env.angular-node-app.js +19 -0
  11. package/lib/env/env.angular-node-app.js.map +1 -0
  12. package/lib/env/env.electron-app.d.ts +13 -0
  13. package/lib/env/env.electron-app.js +19 -0
  14. package/lib/env/env.electron-app.js.map +1 -0
  15. package/lib/env/env.mobile-app.d.ts +13 -0
  16. package/lib/env/env.mobile-app.js +19 -0
  17. package/lib/env/env.mobile-app.js.map +1 -0
  18. package/lib/env/env.npm-lib-and-cli-tool.d.ts +13 -0
  19. package/lib/env/env.npm-lib-and-cli-tool.js +19 -0
  20. package/lib/env/env.npm-lib-and-cli-tool.js.map +1 -0
  21. package/lib/env/env.vscode-plugin.d.ts +13 -0
  22. package/lib/env/env.vscode-plugin.js +19 -0
  23. package/lib/env/env.vscode-plugin.js.map +1 -0
  24. package/lib/env/index.d.ts +5 -0
  25. package/lib/env/index.js +22 -0
  26. package/lib/env/index.js.map +1 -0
  27. package/lib/node-chalk-mock.js +2 -2
  28. package/lib/node-path-mock.js +2 -2
  29. package/lib/required-global-npm-packages.d.ts +0 -4
  30. package/lib/required-global-npm-packages.js +0 -19
  31. package/lib/required-global-npm-packages.js.map +1 -1
  32. package/lib/utils.d.ts +5 -0
  33. package/lib/utils.js +6 -0
  34. package/lib/utils.js.map +1 -1
  35. package/package.json +1 -1
  36. package/tmp-environment.json +5 -15
  37. package/websql/fesm2022/tnp-core.mjs +6 -19
  38. package/websql/fesm2022/tnp-core.mjs.map +1 -1
  39. package/websql/lib/utils.d.ts +5 -0
  40. package/websql/package.json +1 -1
  41. package/client/README.md +0 -24
  42. package/client/fesm2022/tnp-core.mjs +0 -6436
  43. package/client/fesm2022/tnp-core.mjs.map +0 -1
  44. package/client/index.d.ts +0 -6
  45. package/client/lib/core-cli.d.ts +0 -4
  46. package/client/lib/core-config.d.ts +0 -6
  47. package/client/lib/core-imports.d.ts +0 -61
  48. package/client/lib/core-models.d.ts +0 -487
  49. package/client/lib/framework-name.d.ts +0 -3
  50. package/client/lib/helpers-isomorphic.d.ts +0 -28
  51. package/client/lib/helpers-messages.d.ts +0 -49
  52. package/client/lib/helpers.d.ts +0 -185
  53. package/client/lib/index.d.ts +0 -12
  54. package/client/lib/node-chalk-mock.d.ts +0 -3
  55. package/client/lib/node-path-mock.d.ts +0 -26
  56. package/client/lib/progress-data.d.ts +0 -19
  57. package/client/lib/required-global-npm-packages.d.ts +0 -10
  58. package/client/lib/utils.d.ts +0 -383
  59. package/client/public-api.d.ts +0 -2
  60. package/lib/required.d.ts +0 -44
  61. package/lib/required.js +0 -76
  62. package/lib/required.js.map +0 -1
@@ -263,6 +263,11 @@ export declare namespace UtilsOs {
263
263
  */
264
264
  checkForSpecificOnlyHost?: string;
265
265
  }) => Promise<boolean>;
266
+ const isElectron: boolean;
267
+ const isBrowser: boolean;
268
+ const isNode: boolean;
269
+ const isWebSQL: boolean;
270
+ const isVscodeExtension: boolean;
266
271
  }
267
272
  export declare namespace UtilsString {
268
273
  const kebabCaseNoSplitNumbers: (input: string) => string;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tnp-core/websql",
3
- "version": "19.0.34",
3
+ "version": "19.0.37",
4
4
  "module": "fesm2022/tnp-core.mjs",
5
5
  "typings": "index.d.ts",
6
6
  "exports": {
package/client/README.md DELETED
@@ -1,24 +0,0 @@
1
- # MyLib
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
- > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.