@topogram/template-todo 0.1.30 → 0.1.31
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/README.md +6 -4
- package/package.json +8 -4
- package/topogram-template.json +1 -1
package/README.md
CHANGED
|
@@ -5,9 +5,11 @@ Topogram template package for starting a generated Todo app.
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
9
|
-
topogram
|
|
10
|
-
topogram
|
|
8
|
+
npm install --save-dev @topogram/cli
|
|
9
|
+
npx topogram doctor
|
|
10
|
+
npx topogram template list
|
|
11
|
+
npx topogram catalog show todo
|
|
12
|
+
npx topogram new ./todo-app --template todo
|
|
11
13
|
cd ./todo-app
|
|
12
14
|
npm install
|
|
13
15
|
npm run doctor
|
|
@@ -61,7 +63,7 @@ By default the smoke test installs the `@topogram/cli` version pinned in
|
|
|
61
63
|
`topogram-cli.version`. Override it with:
|
|
62
64
|
|
|
63
65
|
```bash
|
|
64
|
-
TOPOGRAM_CLI_PACKAGE_SPEC=/path/to/
|
|
66
|
+
TOPOGRAM_CLI_PACKAGE_SPEC=/path/to/topogram-cli-0.3.38.tgz npm run pack:check
|
|
65
67
|
```
|
|
66
68
|
|
|
67
69
|
## Release
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topogram/template-todo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.31",
|
|
4
4
|
"description": "Topogram template pack for starting a generated Todo app.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/attebury/topogram-template-todo"
|
|
11
|
+
},
|
|
8
12
|
"files": [
|
|
9
13
|
"topogram-template.json",
|
|
10
14
|
"topogram",
|
|
@@ -23,9 +27,9 @@
|
|
|
23
27
|
"release:check": "bash ./scripts/check-release-version.sh"
|
|
24
28
|
},
|
|
25
29
|
"devDependencies": {
|
|
26
|
-
"@topogram/cli": "0.3.
|
|
27
|
-
"@topogram/generator-hono-api": "0.2.
|
|
30
|
+
"@topogram/cli": "^0.3.45",
|
|
31
|
+
"@topogram/generator-hono-api": "0.2.7",
|
|
28
32
|
"@topogram/generator-postgres-db": "0.1.6",
|
|
29
|
-
"@topogram/generator-sveltekit-web": "0.1.
|
|
33
|
+
"@topogram/generator-sveltekit-web": "0.1.15"
|
|
30
34
|
}
|
|
31
35
|
}
|
package/topogram-template.json
CHANGED