harbor-templater 0.0.0 → 1.1.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.
package/README.md CHANGED
@@ -27,7 +27,7 @@ $ npm install -g harbor-templater
27
27
  $ harbor-templater COMMAND
28
28
  running command...
29
29
  $ harbor-templater (--version)
30
- harbor-templater/0.0.0 win32-x64 node-v24.1.0
30
+ harbor-templater/1.1.0 linux-x64 node-v24.12.0
31
31
  $ harbor-templater --help [COMMAND]
32
32
  USAGE
33
33
  $ harbor-templater COMMAND
@@ -100,7 +100,7 @@ EXAMPLES
100
100
  $ harbor-templater init -t template.json -o . --answer projectDir=./my-app --defaults
101
101
  ```
102
102
 
103
- _See code: [src/commands/init/index.ts](https://github.com/bendigiorgio/harbor-templater/blob/v0.0.0/src/commands/init/index.ts)_
103
+ _See code: [src/commands/init/index.ts](https://github.com/bendigiorgio/harbor-templater/blob/v1.1.0/src/commands/init/index.ts)_
104
104
 
105
105
  ## `harbor-templater plugins`
106
106
 
@@ -1,4 +1,5 @@
1
1
  export type JSONTemplate = {
2
+ $schema?: string;
2
3
  author?: string;
3
4
  description?: string;
4
5
  name: string;
@@ -90,5 +90,5 @@
90
90
  ]
91
91
  }
92
92
  },
93
- "version": "0.0.0"
93
+ "version": "1.1.0"
94
94
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "harbor-templater",
3
3
  "description": "A CLI tool for scaffolding projects using Harbor templates",
4
- "version": "0.0.0",
4
+ "version": "1.1.0",
5
5
  "author": "Ben Di Giorgio",
6
6
  "bin": {
7
7
  "harbor-templater": "./bin/run.js"