@temir.ra/create-template 0.5.4 → 0.6.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.
@@ -1,34 +1,34 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "module": "ESNext",
5
- "lib": [
6
- "ESNext"
7
- ],
8
- "moduleResolution": "bundler",
9
- "strict": true,
10
- "verbatimModuleSyntax": true,
11
- "noUncheckedIndexedAccess": true,
12
- "exactOptionalPropertyTypes": true,
13
- "noImplicitOverride": true,
14
- "isolatedDeclarations": true,
15
- "esModuleInterop": true,
16
- "composite": true,
17
- "skipLibCheck": true,
18
- "types": [
19
- "node"
20
- ],
21
- "forceConsistentCasingInFileNames": true,
22
- "resolveJsonModule": true
23
- },
24
- "include": [
25
- "scripts/**/*.ts",
26
- "scripts/**/*.json",
27
- "src/**/*.ts",
28
- "tests/**/*.ts"
29
- ],
30
- "exclude": [
31
- "node_modules/",
32
- "dist/"
33
- ]
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "module": "ESNext",
5
+ "lib": [
6
+ "ESNext"
7
+ ],
8
+ "moduleResolution": "bundler",
9
+ "strict": true,
10
+ "verbatimModuleSyntax": true,
11
+ "noUncheckedIndexedAccess": true,
12
+ "exactOptionalPropertyTypes": true,
13
+ "noImplicitOverride": true,
14
+ "isolatedDeclarations": true,
15
+ "esModuleInterop": true,
16
+ "composite": true,
17
+ "skipLibCheck": true,
18
+ "types": [
19
+ "node"
20
+ ],
21
+ "forceConsistentCasingInFileNames": true,
22
+ "resolveJsonModule": true
23
+ },
24
+ "include": [
25
+ "scripts/**/*.ts",
26
+ "scripts/**/*.json",
27
+ "src/**/*.ts",
28
+ "tests/**/*.ts"
29
+ ],
30
+ "exclude": [
31
+ "node_modules/",
32
+ "dist/"
33
+ ]
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temir.ra/create-template",
3
- "version": "0.5.4",
3
+ "version": "0.6.0",
4
4
  "description": "A template for a template package.",
5
5
  "private": false,
6
6
  "keywords": [
@@ -17,7 +17,9 @@
17
17
  "files": [
18
18
  "dist/"
19
19
  ],
20
- "bin": "./dist/cli.bundle.js",
20
+ "bin": {
21
+ "create-template": "dist/cli.bundle.js"
22
+ },
21
23
  "exports": {
22
24
  ".": {
23
25
  "entrypoint": "./src/cli.ts"
@@ -33,7 +35,7 @@
33
35
  "clean:dist": "rm -rf dist/",
34
36
  "clean:tsbuildinfo": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
35
37
  "clean": "npm run clean:dist && npm run clean:tsbuildinfo",
36
- "tests": "node --import tsx --test tests/**/*.test.ts",
38
+ "tests": "node --import tsx --test \"tests/**/*.test.ts\"",
37
39
  "prebuild": "npm run buildinfo",
38
40
  "build": "npm run build:bundle",
39
41
  "build:bundle": "tsx scripts/build-bundle.ts -- --omit-iife"
@@ -43,5 +45,8 @@
43
45
  "esbuild": "latest",
44
46
  "tsx": "latest",
45
47
  "typescript": "^6.0.3"
48
+ },
49
+ "allowScripts": {
50
+ "esbuild": true
46
51
  }
47
52
  }
@@ -1 +0,0 @@
1
- 0.0.0