@restorecommerce/facade 1.3.0 → 1.3.1
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 +11 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [1.3.1](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@1.3.0...@restorecommerce/facade@1.3.1) (2023-06-12)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **facade:** add postinstall script ([20af900](https://github.com/restorecommerce/libs/commit/20af900e89854fa4ad733ce44b41ad3647b4ada5))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
# [1.3.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@1.2.0...@restorecommerce/facade@1.3.0) (2023-06-12)
|
7
18
|
|
8
19
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@restorecommerce/facade",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.1",
|
4
4
|
"description": "Facade for Restorecommerce microservices",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -95,9 +95,9 @@
|
|
95
95
|
"jest": "^29.5.0",
|
96
96
|
"nodemon": "^2.0.20",
|
97
97
|
"npm-run-all": "^4.1.5",
|
98
|
-
"rimraf": "^
|
98
|
+
"rimraf": "^5.0.1",
|
99
99
|
"supertest": "^6.3.3",
|
100
|
-
"ts-jest": "
|
100
|
+
"ts-jest": "29.1.0",
|
101
101
|
"ts-jest-resolver": "^2.0.1",
|
102
102
|
"ts-node": "^10.9.1",
|
103
103
|
"tsconfig-paths": "^4.1.2",
|
@@ -111,7 +111,7 @@
|
|
111
111
|
"build:codegen:compile": "tsc -p tsconfig.codegen.json",
|
112
112
|
"dev": "npm-run-all build:clean dev:compile",
|
113
113
|
"dev:compile": "tsc -w -p tsconfig.json",
|
114
|
-
"
|
114
|
+
"postinstall": "rm -rf ./node_modules/@josephg/resolvable/index.ts",
|
115
115
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --testTimeout=30000",
|
116
116
|
"test:watch": "jest --watch",
|
117
117
|
"dev:serve": "TS_NODE_PROJECT=tsconfig.test.json nodemon -e ts,hbs -w ./tests -w ./src -x node --inspect=7000 -r ts-node/register tests/server.ts",
|
@@ -136,5 +136,5 @@
|
|
136
136
|
}
|
137
137
|
}
|
138
138
|
},
|
139
|
-
"gitHead": "
|
139
|
+
"gitHead": "1737ebe2a6900a49d49c41adc2649a8c1a9d0193"
|
140
140
|
}
|