@itsflower/cli 0.2.2 → 0.2.3
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.
|
@@ -1634,17 +1634,17 @@ var package_default;
|
|
|
1634
1634
|
var init_package = __esm(() => {
|
|
1635
1635
|
package_default = {
|
|
1636
1636
|
name: "@itsflower/cli",
|
|
1637
|
-
version: "0.2.
|
|
1637
|
+
version: "0.2.3",
|
|
1638
1638
|
description: "CLI for Flower - scaffold structured development workflows",
|
|
1639
1639
|
bin: {
|
|
1640
|
-
flower: "./
|
|
1640
|
+
flower: "./flower.js"
|
|
1641
1641
|
},
|
|
1642
1642
|
files: [
|
|
1643
|
-
"
|
|
1643
|
+
"flower.js"
|
|
1644
1644
|
],
|
|
1645
1645
|
type: "module",
|
|
1646
1646
|
scripts: {
|
|
1647
|
-
build: "bun build ./src/main.ts --outfile ./
|
|
1647
|
+
build: "bun build ./src/main.ts --outfile ./flower.js --target node",
|
|
1648
1648
|
dev: "bun run ./src/main.ts",
|
|
1649
1649
|
typecheck: "tsc --noEmit"
|
|
1650
1650
|
},
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itsflower/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "CLI for Flower - scaffold structured development workflows",
|
|
5
5
|
"bin": {
|
|
6
|
-
"flower": "./
|
|
6
|
+
"flower": "./flower.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
|
-
"
|
|
9
|
+
"flower.js"
|
|
10
10
|
],
|
|
11
11
|
"type": "module",
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "bun build ./src/main.ts --outfile ./
|
|
13
|
+
"build": "bun build ./src/main.ts --outfile ./flower.js --target node",
|
|
14
14
|
"dev": "bun run ./src/main.ts",
|
|
15
15
|
"typecheck": "tsc --noEmit"
|
|
16
16
|
},
|