@restorecommerce/facade 1.12.1 → 1.12.2
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/codegen/tsconfig.codegen.tsbuildinfo +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +15 -5
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/jest.config.cjs +4 -1
- package/package.json +4 -4
- package/tsconfig.test.json +3 -1
package/jest.config.cjs
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@restorecommerce/facade",
|
3
|
-
"version": "1.12.
|
3
|
+
"version": "1.12.2",
|
4
4
|
"description": "Facade for Restorecommerce microservices",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -104,7 +104,7 @@
|
|
104
104
|
"ts-jest-resolver": "^2.0.1",
|
105
105
|
"ts-node": "^10.9.1",
|
106
106
|
"tsconfig-paths": "^4.2.0",
|
107
|
-
"typescript": "^5.
|
107
|
+
"typescript": "^5.3.3"
|
108
108
|
},
|
109
109
|
"scripts": {
|
110
110
|
"build": "npm-run-all build:clean generate build:compile build:codegen:clean build:codegen:compile copyhbs",
|
@@ -114,7 +114,7 @@
|
|
114
114
|
"build:codegen:compile": "tsc -p tsconfig.codegen.json",
|
115
115
|
"dev": "npm-run-all build:clean dev:compile",
|
116
116
|
"dev:compile": "tsc -w -p tsconfig.json",
|
117
|
-
"postinstall": "rm -rf
|
117
|
+
"postinstall": "rm -rf ../../node_modules/@josephg/resolvable/index.ts",
|
118
118
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --testTimeout=30000",
|
119
119
|
"test:watch": "jest --watch",
|
120
120
|
"dev:serve": "TS_NODE_PROJECT=tsconfig.test.json nodemon -e ts,hbs -w ./tests -w ./src -x ts-node-esm --project tsconfig.test.json -r ts-node/register tests/server.ts",
|
@@ -139,5 +139,5 @@
|
|
139
139
|
}
|
140
140
|
}
|
141
141
|
},
|
142
|
-
"gitHead": "
|
142
|
+
"gitHead": "5447591f0a197e012769f783325f5d41bf7e65ca"
|
143
143
|
}
|
package/tsconfig.test.json
CHANGED