@stack-dev/cli 0.3.1 → 0.3.2

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @stack-dev/cli@0.3.1 build /home/runner/work/stack-dev/stack-dev/apps/cli
2
+ > @stack-dev/cli@0.3.2 build /home/runner/work/stack-dev/stack-dev/apps/cli
3
3
  > tsup src/index.ts --dts --format esm,cjs
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -11,10 +11,10 @@ CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
13
  ESM dist/index.mjs 66.99 KB
14
- ESM ⚡️ Build success in 170ms
14
+ ESM ⚡️ Build success in 190ms
15
15
  CJS dist/index.js 69.76 KB
16
- CJS ⚡️ Build success in 170ms
16
+ CJS ⚡️ Build success in 190ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 2364ms
18
+ DTS ⚡️ Build success in 2585ms
19
19
  DTS dist/index.d.mts 13.00 B
20
20
  DTS dist/index.d.ts 13.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @stack-dev/cli
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 45ab108: Added License
8
+ - Updated dependencies [45ab108]
9
+ - @stack-dev/core@0.2.1
10
+
3
11
  ## 0.3.1
4
12
 
5
13
  ### Patch Changes
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Benjamin McLean.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -53,7 +53,7 @@ This workspace is organized as follows:
53
53
 
54
54
  - `packages/*`: Shared libraries and configuration packages.
55
55
  - `apps/*`: Deployment targets such as Vite apps, CLIs, etc.
56
- - `tooling/*`: Shared ESLint, Prettier, and TypeScript configuration files.
56
+ - `configs/*`: Shared ESLint, Prettier, and TypeScript configuration files.
57
57
 
58
58
  ---
59
59
 
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ var import_commander = require("commander");
28
28
  var import_enquirer3 = require("enquirer");
29
29
 
30
30
  // package.json
31
- var version = "0.3.1";
31
+ var version = "0.3.2";
32
32
 
33
33
  // src/package-json/package-json.ts
34
34
  var import_core = require("@stack-dev/core");
package/dist/index.mjs CHANGED
@@ -5,7 +5,7 @@ import { Command } from "commander";
5
5
  import { prompt as prompt3 } from "enquirer";
6
6
 
7
7
  // package.json
8
- var version = "0.3.1";
8
+ var version = "0.3.2";
9
9
 
10
10
  // src/package-json/package-json.ts
11
11
  import { haveSameItems, sortKeys } from "@stack-dev/core";
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@stack-dev/cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "license": "MIT",
5
+ "homepage": "https://github.com/BenMcLean981/stack-dev#readme",
6
+ "repository": "github:BenMcLean981/stack-dev",
5
7
  "bin": {
6
8
  "stack": "./dist/index.js"
7
9
  },
@@ -13,7 +15,7 @@
13
15
  "json5": "^2.2.3",
14
16
  "lodash": "^4.17.21",
15
17
  "yaml": "^2.8.0",
16
- "@stack-dev/core": "0.2.0"
18
+ "@stack-dev/core": "0.2.1"
17
19
  },
18
20
  "devDependencies": {
19
21
  "@types/lodash": "^4.17.20",
@@ -22,9 +24,9 @@
22
24
  "prettier": "^3.6.2",
23
25
  "prettier-plugin-organize-imports": "^4.2.0",
24
26
  "tsup": "^7.3.0",
25
- "@stack-dev/prettier-config": "0.2.0",
26
- "@stack-dev/typescript-config": "0.2.0",
27
- "@stack-dev/eslint-config": "0.2.0"
27
+ "@stack-dev/eslint-config": "0.2.1",
28
+ "@stack-dev/prettier-config": "0.2.1",
29
+ "@stack-dev/typescript-config": "0.2.1"
28
30
  },
29
31
  "scripts": {
30
32
  "build": "tsup src/index.ts --dts --format esm,cjs",