chore: improve ci pipeline (#1764)

* fix: caching deps + add true parallelization to integration tests api

* fix: github action

* chore: upgrade to yarn berry (#1762)

* init migration

* remove: yarn.lock from all pkgs

* fix: build script in pkgs

* adjust yarn config

* fix: yarn.lock and yarnrc.yml

* fix: github actions

* fix: wrong type

* fix (medusa-react): use dts-cli instead of tsdx

* fix: yarn.lock

* fix: yarn v

* fix: prepare script

* add: comment on why we need to downgrade yarn before medusa-dev

* chore: move to Turborepo (#1763)

* increase number of parallel nodes

* fix (medusa-fulfillment-webshipper): build script

* fix: use new version of medusa-dev

* fix: rename cache-bootstrap to cache-deps
This commit is contained in:
Zakaria El Asri
2022-07-10 12:11:11 +02:00
committed by GitHub
parent 6715eb11de
commit 9fa4238ee4
79 changed files with 54577 additions and 318956 deletions
+8 -11
View File
@@ -11,11 +11,11 @@
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"prepare": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"start": "dts watch",
"build": "dts build",
"prepare": "dts build",
"test": "dts test --passWithNoTests",
"lint": "dts lint",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006 -s public",
@@ -68,6 +68,7 @@
"@types/react-dom": "^17.0.10",
"axios": "^0.24.0",
"babel-loader": "^8.2.3",
"dts-cli": "^1.5.1",
"husky": "^7.0.4",
"msw": "^0.35.0",
"msw-storybook-addon": "^1.5.0",
@@ -76,9 +77,8 @@
"react-is": "^17.0.2",
"react-json-view": "^1.21.3",
"size-limit": "^6.0.4",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
"ts-jest": "^27.1.4",
"tslib": "^2.3.1"
},
"dependencies": {
"@medusajs/medusa-js": "^1.2.3",
@@ -86,9 +86,6 @@
"lodash-es": "^4.17.21",
"react-query": "^3.31.0"
},
"resolutions": {
"**/typescript": "^4.1.3"
},
"msw": {
"workerDirectory": "public"
},