@callstack/brownfield-cli 3.6.0 → 3.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @callstack/brownfield-cli
2
2
 
3
+ ## 3.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#313](https://github.com/callstack/react-native-brownfield/pull/313) [`c153378`](https://github.com/callstack/react-native-brownfield/commit/c1533783c0a93372b3c12f08c1428766c0405226) Thanks [@alpharius-ck](https://github.com/alpharius-ck)! - Jest unit tests
8
+
9
+ ## 3.6.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#305](https://github.com/callstack/react-native-brownfield/pull/305) [`eab53d9`](https://github.com/callstack/react-native-brownfield/commit/eab53d9f7b93f38e13185020fcf8a7af23df0d05) Thanks [@hurali97](https://github.com/hurali97)! - fix securiy vulnerabilities
14
+
3
15
  ## 3.6.0
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@callstack/brownfield-cli",
3
- "version": "3.6.0",
3
+ "version": "3.7.0",
4
4
  "license": "MIT",
5
5
  "author": "Artur Morys-Magiera <artus9033@gmail.com>",
6
6
  "bin": {
@@ -42,7 +42,8 @@
42
42
  "scripts": {
43
43
  "lint": "eslint .",
44
44
  "typecheck": "tsc --noEmit",
45
- "build": "tsc -p tsconfig.json",
45
+ "build:brownfield": "yarn run build",
46
+ "build": "node -e \"const fs=require('fs'),p=require('path');const d=p.join('dist','index.d.ts');if(!fs.existsSync(d)){try{fs.unlinkSync('tsconfig.tsbuildinfo')}catch{}}\" && tsc -p tsconfig.json",
46
47
  "dev": "tsc -p tsconfig.json --watch",
47
48
  "test": "vitest run"
48
49
  },
@@ -100,7 +101,7 @@
100
101
  "globals": "^17.3.0",
101
102
  "nodemon": "^3.1.14",
102
103
  "typescript": "5.9.3",
103
- "vitest": "^4.1.0"
104
+ "vitest": "^4.1.4"
104
105
  },
105
106
  "engines": {
106
107
  "node": ">=20"