@mainset/cli 0.3.0-rc.1 → 0.3.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.
@@ -6,6 +6,7 @@ const runtimePathById = {
6
6
  // Relative to executable project
7
7
  root,
8
8
  dist: path.join(root, 'dist'),
9
+ config: path.join(root, 'config'),
9
10
  src: path.join(root, 'src'),
10
11
  // Relative to file being executed
11
12
  msCLISrc: __dirname,
@@ -1,6 +1,7 @@
1
1
  declare const runtimePathById: {
2
2
  root: string;
3
3
  dist: string;
4
+ config: string;
4
5
  src: string;
5
6
  msCLISrc: string;
6
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mainset/cli",
3
- "version": "0.3.0-rc.1",
3
+ "version": "0.3.0",
4
4
  "description": "A unified CLI tool for accelerating development, based on mainset vision of front-end infrastructure",
5
5
  "homepage": "https://github.com/mainset/dev-stack-fe/tree/main/packages/cli",
6
6
  "bugs": {
@@ -31,19 +31,19 @@
31
31
  "ms-cli": "./dist/esm/mainset-cli.mjs"
32
32
  },
33
33
  "dependencies": {
34
- "@dotenvx/dotenvx": "^1.47.2",
35
- "@types/node": "^24.0.3",
36
- "commander": "^14.0.0",
34
+ "@dotenvx/dotenvx": "^1.51.0",
35
+ "@types/node": "^24.7.0",
36
+ "commander": "^14.0.1",
37
37
  "cors": "^2.8.5",
38
- "cross-env": "^7.0.3",
38
+ "cross-env": "^10.1.0",
39
39
  "express": "^5.1.0",
40
40
  "http-proxy-middleware": "^3.0.5"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/cors": "^2.8.19",
44
44
  "@types/express": "^5.0.3",
45
- "@types/node": "^24.0.3",
46
- "@mainset/dev-stack-fe": "^0.2.0-rc.1"
45
+ "@types/node": "^24.7.0",
46
+ "@mainset/dev-stack-fe": "^0.2.0"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@mainset/dev-stack-fe": "^0.2.0"