testeranto 0.84.0 → 0.90.0

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/README.md +1 -5
  2. package/bin/init-docs.js +24 -0
  3. package/bundle.js +53 -0
  4. package/dist/common/dist/module/src/Init.js +40 -0
  5. package/dist/common/src/Init.js +30 -0
  6. package/dist/common/src/PM/main.js +45 -9
  7. package/dist/common/src/Project.js +80 -0
  8. package/dist/common/src/Puppeteer.js +1 -1
  9. package/dist/common/{run-tests.js → src/build-tests.js} +10 -5
  10. package/dist/common/src/defaultConfig.js +19 -0
  11. package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +27 -15
  12. package/dist/common/src/init-docs.js +43 -0
  13. package/dist/common/src/lib/abstractBase.js +0 -64
  14. package/dist/common/src/lib/core.js +5 -3
  15. package/dist/common/{build-tests.js → src/run-tests.js} +10 -9
  16. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  17. package/dist/module/src/Init.js +30 -0
  18. package/dist/module/src/PM/main.js +45 -9
  19. package/dist/module/src/Project.js +80 -0
  20. package/dist/module/src/Puppeteer.js +1 -1
  21. package/dist/module/src/build-tests.js +11 -0
  22. package/dist/module/src/defaultConfig.js +17 -0
  23. package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +27 -15
  24. package/dist/module/src/init-docs.js +15 -0
  25. package/dist/module/src/lib/abstractBase.js +0 -64
  26. package/dist/module/src/lib/core.js +5 -3
  27. package/dist/module/src/run-tests.js +11 -0
  28. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  29. package/dist/prebuild/build-tests.mjs +552 -0
  30. package/dist/prebuild/init-docs.mjs +48 -0
  31. package/dist/prebuild/run-tests.mjs +907 -0
  32. package/dist/types/dist/module/src/Init.d.ts +2 -0
  33. package/dist/types/src/build-tests.d.ts +1 -0
  34. package/dist/types/src/defaultConfig.d.ts +3 -0
  35. package/dist/types/src/init-docs.d.ts +1 -0
  36. package/dist/types/src/run-tests.d.ts +1 -0
  37. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  38. package/package.json +10 -13
  39. package/src/Init.ts +28 -0
  40. package/src/PM/main.ts +58 -10
  41. package/src/Project.ts +102 -0
  42. package/src/Puppeteer.ts +1 -1
  43. package/src/build-tests.ts +12 -0
  44. package/src/defaultConfig.ts +20 -0
  45. package/src/esbuildConfigs/inputFilesPlugin.ts +48 -16
  46. package/src/init-docs.ts +19 -0
  47. package/src/lib/abstractBase.ts +0 -67
  48. package/src/lib/core.ts +3 -3
  49. package/src/run-tests.ts +12 -0
  50. package/tsconfig.json +1 -1
  51. package/build-tests.ts +0 -16
  52. package/dist/common/init-docs.js +0 -8
  53. package/dist/module/build-tests.js +0 -10
  54. package/dist/module/init-docs.js +0 -3
  55. package/dist/module/run-tests.js +0 -6
  56. package/dist/prebuild/Puppeteer.mjs +0 -82033
  57. package/dist/types/build-tests.d.ts +0 -3
  58. package/dist/types/init-docs.d.ts +0 -2
  59. package/dist/types/run-tests.d.ts +0 -2
  60. package/init-docs.ts +0 -5
  61. package/pupBuild.js +0 -18
  62. package/run-tests.ts +0 -9
@@ -1,3 +0,0 @@
1
- import { ITProject } from "./src/Project";
2
- declare const _default: ITProject;
3
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: Promise<void>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: Promise<void>;
2
- export default _default;
package/init-docs.ts DELETED
@@ -1,5 +0,0 @@
1
- import Init from "./src/Init.js";
2
-
3
- import Project from "./testeranto.js";
4
-
5
- export default Init(Project as any);
package/pupBuild.js DELETED
@@ -1,18 +0,0 @@
1
- import * as esbuild from 'esbuild'
2
-
3
- await esbuild.build({
4
- entryPoints: ['src/Puppeteer.ts'],
5
- bundle: true,
6
- format: "esm",
7
- platform: "node",
8
- // format: "node",
9
- outfile: 'dist/prebuild/Puppeteer.mjs',
10
- // external: ['crypto', 'os'],
11
- supported: {
12
- "dynamic-import": true,
13
- },
14
-
15
- banner: {
16
- js: `import { createRequire } from 'module';const require = createRequire(import.meta.url);`,
17
- },
18
- })
package/run-tests.ts DELETED
@@ -1,9 +0,0 @@
1
- import process from "process";
2
- process.chdir(__dirname);
3
-
4
- import Puppeteer from "./src/Puppeteer.js";
5
-
6
- console.log(process.argv);
7
- const Project = await import(process.argv[2]);
8
-
9
- export default Puppeteer(Project as any);