@martel/calyx 1.13.1 → 1.13.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.13.3](https://github.com/bmartel/calyx/compare/v1.13.2...v1.13.3) (2026-07-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** move rxjs to dependencies since it is imported at runtime ([ffb4c40](https://github.com/bmartel/calyx/commit/ffb4c401819a633ae6c5f512e298b396d0af594d))
7
+
8
+ ## [1.13.2](https://github.com/bmartel/calyx/compare/v1.13.1...v1.13.2) (2026-07-01)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **cli:** correct dev-mode workspace detection in new project generator ([13deec4](https://github.com/bmartel/calyx/commit/13deec4b1246e461d4445599f30a76e0f23a25c8))
14
+
1
15
  ## [1.13.1](https://github.com/bmartel/calyx/compare/v1.13.0...v1.13.1) (2026-07-01)
2
16
 
3
17
 
package/bun.lock CHANGED
@@ -7,6 +7,7 @@
7
7
  "dependencies": {
8
8
  "graphql": "^17.0.1",
9
9
  "reflect-metadata": "^0.2.2",
10
+ "rxjs": "^7.8.2",
10
11
  },
11
12
  "devDependencies": {
12
13
  "@nestjs/common": "^11.1.27",
@@ -20,7 +21,6 @@
20
21
  "@types/autocannon": "^7.12.7",
21
22
  "@types/bun": "latest",
22
23
  "autocannon": "^8.0.0",
23
- "rxjs": "^7.8.2",
24
24
  "semantic-release": "^25.0.0",
25
25
  },
26
26
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@martel/calyx",
3
- "version": "1.13.1",
3
+ "version": "1.13.3",
4
4
  "description": "High-performance Bun-native NestJS-compatible framework",
5
5
  "main": "src/index.ts",
6
6
  "bin": {
@@ -13,7 +13,8 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "graphql": "^17.0.1",
16
- "reflect-metadata": "^0.2.2"
16
+ "reflect-metadata": "^0.2.2",
17
+ "rxjs": "^7.8.2"
17
18
  },
18
19
  "devDependencies": {
19
20
  "@nestjs/common": "^11.1.27",
@@ -27,7 +28,6 @@
27
28
  "@types/autocannon": "^7.12.7",
28
29
  "@types/bun": "latest",
29
30
  "autocannon": "^8.0.0",
30
- "rxjs": "^7.8.2",
31
31
  "semantic-release": "^25.0.0"
32
32
  },
33
33
  "publishConfig": {
package/src/cli/index.ts CHANGED
@@ -129,7 +129,8 @@ function runNew(name: string) {
129
129
 
130
130
  let isDevMode = process.env.CALYX_DEV === 'true';
131
131
  const selfPkgPath = join(import.meta.dir, '../../package.json');
132
- if (existsSync(selfPkgPath)) {
132
+ const gitPath = join(import.meta.dir, '../../.git');
133
+ if (existsSync(selfPkgPath) && existsSync(gitPath)) {
133
134
  isDevMode = true; // Auto-detect workspace dev environment
134
135
  }
135
136