@temir.ra/create-template 0.4.0 → 0.4.1-pre.2
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/CHANGELOG.md +4 -0
- package/README.md +8 -1
- package/buildinfo.txt +1 -1
- package/dist/cli.bundle.js +0 -0
- package/package.json +48 -48
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ npm create --no-install --no-git "@temir.ra/template@latest" .
|
|
|
25
25
|
|
|
26
26
|
# set metadata in package.json
|
|
27
27
|
|
|
28
|
-
npm
|
|
28
|
+
npm update
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
# Documentation
|
|
@@ -65,6 +65,13 @@ npmx tsx dist/cli.bundle.js -- example/
|
|
|
65
65
|
@temir.ra:registry=https://registry.npmjs.org/
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
+
`~/.bunfig.toml` or `bunfig.toml`:
|
|
69
|
+
|
|
70
|
+
```toml
|
|
71
|
+
[install.scopes]
|
|
72
|
+
"temir.ra" = { url = "https://registry.npmjs.org/" }
|
|
73
|
+
```
|
|
74
|
+
|
|
68
75
|
```bash
|
|
69
76
|
# registry.npmjs.org/
|
|
70
77
|
npm login
|
package/buildinfo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.1-pre.2+4a688eb
|
package/dist/cli.bundle.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@temir.ra/create-template",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "A template for a template package.",
|
|
5
|
-
"private": false,
|
|
6
|
-
"keywords": [
|
|
7
|
-
"typescript",
|
|
8
|
-
"template-template"
|
|
9
|
-
],
|
|
10
|
-
"author": "temir.ra",
|
|
11
|
-
"license": "MIT",
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "https://git.chimps.quest/trs/create-template.git"
|
|
15
|
-
},
|
|
16
|
-
"type": "module",
|
|
17
|
-
"files": [
|
|
18
|
-
"scripts/buildinfo.ts",
|
|
19
|
-
"scripts/build-bundle.ts",
|
|
20
|
-
"scripts/cdn-rewrite-map.json",
|
|
21
|
-
"CHANGELOG.md",
|
|
22
|
-
"buildinfo.txt",
|
|
23
|
-
"dist/",
|
|
24
|
-
"tests/",
|
|
25
|
-
"template/"
|
|
26
|
-
],
|
|
27
|
-
"bin": "./dist/cli.bundle.js",
|
|
28
|
-
"imports": {
|
|
29
|
-
"#src/*.js": "./src/*.ts"
|
|
30
|
-
},
|
|
31
|
-
"scripts": {
|
|
32
|
-
"reinstall": "rm -rf node_modules && rm -f package-lock.json bun.lock yarn.lock pnpm-lock.yaml && npm install",
|
|
33
|
-
"typecheck": "tsc --noEmit",
|
|
34
|
-
"buildinfo": "tsx scripts/buildinfo.ts",
|
|
35
|
-
"clean:dist": "rm -rf dist/",
|
|
36
|
-
"clean:tsbuildinfo": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
|
|
37
|
-
"clean": "npm run clean:dist && npm run clean:tsbuildinfo",
|
|
38
|
-
"tests": "node --import tsx --test tests/**/*.test.ts",
|
|
39
|
-
"prebuild": "npm run buildinfo",
|
|
40
|
-
"build": "npm run build:cli-bundle",
|
|
41
|
-
"build:cli-bundle": "esbuild src/cli.ts --outdir=dist --entry-names=[dir]/[name].bundle --platform=node --format=esm --bundle --minify --sourcemap=external"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@types/node": "latest",
|
|
45
|
-
"esbuild": "latest",
|
|
46
|
-
"tsx": "latest",
|
|
47
|
-
"typescript": "^6.0.3"
|
|
48
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@temir.ra/create-template",
|
|
3
|
+
"version": "0.4.1-pre.2",
|
|
4
|
+
"description": "A template for a template package.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"keywords": [
|
|
7
|
+
"typescript",
|
|
8
|
+
"template-template"
|
|
9
|
+
],
|
|
10
|
+
"author": "temir.ra",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://git.chimps.quest/trs/create-template.git"
|
|
15
|
+
},
|
|
16
|
+
"type": "module",
|
|
17
|
+
"files": [
|
|
18
|
+
"scripts/buildinfo.ts",
|
|
19
|
+
"scripts/build-bundle.ts",
|
|
20
|
+
"scripts/cdn-rewrite-map.json",
|
|
21
|
+
"CHANGELOG.md",
|
|
22
|
+
"buildinfo.txt",
|
|
23
|
+
"dist/",
|
|
24
|
+
"tests/",
|
|
25
|
+
"template/"
|
|
26
|
+
],
|
|
27
|
+
"bin": "./dist/cli.bundle.js",
|
|
28
|
+
"imports": {
|
|
29
|
+
"#src/*.js": "./src/*.ts"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"reinstall": "rm -rf node_modules && rm -f package-lock.json bun.lock yarn.lock pnpm-lock.yaml && npm install",
|
|
33
|
+
"typecheck": "tsc --noEmit",
|
|
34
|
+
"buildinfo": "tsx scripts/buildinfo.ts",
|
|
35
|
+
"clean:dist": "rm -rf dist/",
|
|
36
|
+
"clean:tsbuildinfo": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
|
|
37
|
+
"clean": "npm run clean:dist && npm run clean:tsbuildinfo",
|
|
38
|
+
"tests": "node --import tsx --test tests/**/*.test.ts",
|
|
39
|
+
"prebuild": "npm run buildinfo",
|
|
40
|
+
"build": "npm run build:cli-bundle",
|
|
41
|
+
"build:cli-bundle": "esbuild src/cli.ts --outdir=dist --entry-names=[dir]/[name].bundle --platform=node --format=esm --bundle --minify --sourcemap=external"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/node": "latest",
|
|
45
|
+
"esbuild": "latest",
|
|
46
|
+
"tsx": "latest",
|
|
47
|
+
"typescript": "^6.0.3"
|
|
48
|
+
}
|
|
49
49
|
}
|