@itsflower/cli 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/dist/main.js +1 -1
  2. package/package.json +12 -3
package/dist/main.js CHANGED
@@ -31,7 +31,7 @@ var init = defineCommand({
31
31
  var main = defineCommand({
32
32
  meta: {
33
33
  name: "flower",
34
- version: "0.1.0",
34
+ version: "0.1.1",
35
35
  description: "\u{1F338} flower CLI"
36
36
  },
37
37
  subCommands: {
package/package.json CHANGED
@@ -1,10 +1,15 @@
1
1
  {
2
2
  "name": "@itsflower/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "🌸 flower CLI — scaffold structured development workflows",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
- "keywords": ["flower", "workflow", "cli", "templates"],
7
+ "keywords": [
8
+ "flower",
9
+ "workflow",
10
+ "cli",
11
+ "templates"
12
+ ],
8
13
  "repository": {
9
14
  "type": "git",
10
15
  "url": "https://github.com/itsflower/flower"
@@ -12,12 +17,16 @@
12
17
  "bin": {
13
18
  "flower": "./dist/main.js"
14
19
  },
15
- "files": ["dist", "templates"],
20
+ "files": [
21
+ "dist",
22
+ "templates"
23
+ ],
16
24
  "publishConfig": {
17
25
  "access": "public"
18
26
  },
19
27
  "scripts": {
20
28
  "build": "tsup src/main.ts --format esm --shims",
29
+ "release": "bun run ../../scripts/release.ts",
21
30
  "prepack": "rm -f templates && cp -r ../../core/templates templates",
22
31
  "postpack": "rm -rf templates && ln -s ../../core/templates templates"
23
32
  },