@tsmodule/tsmodule 40.0.16 → 40.2.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 (33) hide show
  1. package/package.json +6 -21
  2. /package/{dist/templates → templates}/default/.eslintrc +0 -0
  3. /package/{dist/templates → templates}/default/.github/workflows/ci.yml +0 -0
  4. /package/{dist/templates → templates}/default/.gitignore +0 -0
  5. /package/{dist/templates → templates}/default/LICENSE +0 -0
  6. /package/{dist/templates → templates}/default/README.md +0 -0
  7. /package/{dist/templates → templates}/default/package.json +0 -0
  8. /package/{dist/templates → templates}/default/src/index.ts +0 -0
  9. /package/{dist/templates → templates}/default/test/example.test.ts +0 -0
  10. /package/{dist/templates → templates}/default/tsconfig.json +0 -0
  11. /package/{dist/templates → templates}/react/.eslintrc +0 -0
  12. /package/{dist/templates → templates}/react/.gitignore +0 -0
  13. /package/{dist/templates → templates}/react/LICENSE +0 -0
  14. /package/{dist/templates → templates}/react/README.md +0 -0
  15. /package/{dist/templates → templates}/react/next-env.d.ts +0 -0
  16. /package/{dist/templates → templates}/react/next.config.js +0 -0
  17. /package/{dist/templates → templates}/react/package.json +0 -0
  18. /package/{dist/templates → templates}/react/postcss.config.js +0 -0
  19. /package/{dist/templates → templates}/react/public/vercel.svg +0 -0
  20. /package/{dist/templates → templates}/react/src/components/Card/index.css +0 -0
  21. /package/{dist/templates → templates}/react/src/components/Card/index.tsx +0 -0
  22. /package/{dist/templates → templates}/react/src/components/CardGrid/index.tsx +0 -0
  23. /package/{dist/templates → templates}/react/src/components/Footer/index.tsx +0 -0
  24. /package/{dist/templates → templates}/react/src/components/GetStarted/index.tsx +0 -0
  25. /package/{dist/templates → templates}/react/src/components/Welcome/index.tsx +0 -0
  26. /package/{dist/templates → templates}/react/src/components/index.css +0 -0
  27. /package/{dist/templates → templates}/react/src/components/index.ts +0 -0
  28. /package/{dist/templates → templates}/react/src/index.css +0 -0
  29. /package/{dist/templates → templates}/react/src/index.ts +0 -0
  30. /package/{dist/templates → templates}/react/src/pages/_app.tsx +0 -0
  31. /package/{dist/templates → templates}/react/src/pages/api/hello.ts +0 -0
  32. /package/{dist/templates → templates}/react/src/pages/index.tsx +0 -0
  33. /package/{dist/templates → templates}/react/tailwind.config.js +0 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tsmodule/tsmodule",
3
3
  "platform": "node",
4
4
  "type": "module",
5
- "version": "40.0.16",
5
+ "version": "40.2.0",
6
6
  "repository": "tsmodule/tsmodule",
7
7
  "description": "TypeScript Module loader and compiler",
8
8
  "license": "MIT",
@@ -17,8 +17,8 @@
17
17
  },
18
18
  "files": [
19
19
  "dist/",
20
- "dist/templates/",
21
- "dist/templates/**/.gitignore"
20
+ "templates/",
21
+ "templates/**/.gitignore"
22
22
  ],
23
23
  "engines": {
24
24
  "node": ">=14"
@@ -26,10 +26,10 @@
26
26
  "scripts": {
27
27
  "prebootload": "node scripts/bootstrap.js",
28
28
  "bootload": "node --no-warnings --loader ./dist/loader/index.js src/index.ts build -r",
29
- "prebuild": "yarn bootload && yarn link",
30
- "build": "node dist/bin.js build",
29
+ "prebuild": "yarn bootload && npm link -f --scripts-prepend-node-path",
30
+ "build": "node dist/bin.js build -b",
31
31
  "dev": "node dist/bin.js dev",
32
- "test-bundle": "yarn build -b && ava --no-worker-threads",
32
+ "test-bundle": "yarn build -b && ava",
33
33
  "test": "yarn test-bundle",
34
34
  "retest": "SKIP_TEST_SETUP=1 yarn test-bundle",
35
35
  "retest-bundle": "SKIP_TEST_SETUP=1 yarn test-bundle",
@@ -41,7 +41,6 @@
41
41
  "typescript": "^4.7.4"
42
42
  },
43
43
  "devDependencies": {
44
- "@types/glob": "^7.2.0",
45
44
  "@types/node": "^18.0.0",
46
45
  "@typescript-eslint/eslint-plugin": "^5.30.0",
47
46
  "@typescript-eslint/parser": "^5.30.0",
@@ -55,7 +54,6 @@
55
54
  "eslint": "^8.18.0",
56
55
  "eslint-config-next": "^12.2.0",
57
56
  "fast-glob": "^3.2.11",
58
- "glob": "^8.0.3",
59
57
  "node-watch": "^0.7.3",
60
58
  "ora": "^6.1.2",
61
59
  "path": "^0.12.7",
@@ -71,19 +69,6 @@
71
69
  "releaseName": "v${version}"
72
70
  }
73
71
  },
74
- "ava": {
75
- "timeout": "10m",
76
- "files": [
77
- "test/**/*.test.ts"
78
- ],
79
- "extensions": {
80
- "ts": "module"
81
- },
82
- "nodeArguments": [
83
- "--no-warnings",
84
- "--loader=./dist/loader/index.js"
85
- ]
86
- },
87
72
  "keywords": [
88
73
  "esm",
89
74
  "es module",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes