@chargetrip/types 1.37.3 → 1.37.4
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 +7 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.37.4](https://github.com/chargetrip/types/compare/v1.37.3...v1.37.4) (2023-08-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add regeneration into the build script ([6dddce5](https://github.com/chargetrip/types/commit/6dddce5d91f46134adf01d7d35657581005c1d3d))
|
|
7
|
+
|
|
1
8
|
## [1.37.3](https://github.com/chargetrip/types/compare/v1.37.2...v1.37.3) (2023-08-29)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chargetrip/types",
|
|
3
|
-
"version": "1.37.
|
|
3
|
+
"version": "1.37.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chargetrip",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"build:babel": "babel src --out-dir dist/react-native --extensions .ts,.tsx --source-maps --ignore \"**/__tests__/**\",\"**/*.d.ts\"",
|
|
68
68
|
"build:rollup": "rollup -c",
|
|
69
69
|
"build:ts": " tsc -p ./tsconfig.release.json --outDir dist/ts --emitDeclarationOnly",
|
|
70
|
-
"build": "yarn clean && yarn build:babel && yarn build:rollup && yarn build:ts",
|
|
70
|
+
"build": "yarn clean && yarn generate:types && yarn build:babel && yarn build:rollup && yarn build:ts",
|
|
71
71
|
"watch:babel": "yarn build:babel --watch",
|
|
72
72
|
"watch:rollup": "yarn build:rollup -w",
|
|
73
73
|
"watch:ts": "yarn build:ts --watch",
|