@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 CHANGED
@@ -5,9 +5,11 @@ Topogram template package for starting a generated Todo app.
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- topogram template list
9
- topogram catalog show todo
10
- topogram new ./todo-app --template todo --catalog github:attebury/topograms/topograms.catalog.json
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/attebury-topogram-0.3.2.tgz npm run pack:check
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.30",
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.34",
27
- "@topogram/generator-hono-api": "0.2.6",
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.14"
33
+ "@topogram/generator-sveltekit-web": "0.1.15"
30
34
  }
31
35
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "id": "@topogram/template-todo",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "kind": "starter",
5
5
  "description": "Todo/task management starter with generated web, API, and Postgres components.",
6
6
  "topogramVersion": "0.1",