Skip to content

Commit

Permalink
Merge branch 'main' into jasmine-runner-better
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed Oct 24, 2023
2 parents cf268cc + 754dfc5 commit b8c7bd3
Show file tree
Hide file tree
Showing 8 changed files with 257 additions and 110 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,12 @@ jobs:
name: bundles
path: packages/
- name: Unpack production packages
if: matrix.os != 'windows-latest'
run: yarn unpack:all
- name: Unpack production packages (Windows only)
if: matrix.os == 'windows-latest'
# untar seems to fail on Windows when untaring already existing files
run: yarn unpack:all || true
- name: Alter internals to behave as if published
run: yarn workspaces foreach -pRvi --from '${{matrix.package-name}}' --no-private --exclude '${{matrix.package-name}}' exec yarn node $(yarn bin packaged) --keep-node-modules
- name: Unit tests
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"publint:all": "yarn workspaces foreach -pvi --no-private exec publint --strict",
"version:bump": "yarn version check --interactive",
"pack:all": "yarn workspaces foreach -pvi --no-private pack --out package.tgz",
"unpack:all": "yarn workspaces foreach -pvi --no-private exec tar -xvf package.tgz --strip-components=1 --exclude='package/package.json' --exclude='package/LICENSE' --exclude='package/CHANGELOG.md' --exclude='package/README.md'"
"unpack:all": "yarn workspaces foreach -pvi --no-private exec tar -xvf package.tgz --strip-components=1 --exclude='package/package.json'"
},
"devDependencies": {
"@fast-check/packaged": "*",
Expand Down
1 change: 1 addition & 0 deletions packages/jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"@fast-check/worker": "workspace:*",
"@jest/expect": "^29.7.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.6",
"@types/node": "^18.18.6",
"babel-jest": "^29.7.0",
"fast-check": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions packages/poisoning/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.6",
"@types/node": "^18.18.6",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
Expand Down
2 changes: 2 additions & 0 deletions packages/vitest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,12 @@
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.6",
"babel-jest": "^29.7.0",
"fast-check": "workspace:*",
"jest": "^29.7.0",
"typescript": "~5.2.2",
"vite": "^5.0.0-0",
"vitest": "^0.34.6"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.6",
"@types/node": "^18.18.6",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
Expand Down
4 changes: 4 additions & 0 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,12 @@
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.4.3",
"@docusaurus/theme-classic": "2.4.3",
"@docusaurus/types": "2.4.3",
"@jest/globals": "^29.7.0",
"@mdx-js/react": "^1.6.22",
"@tsconfig/docusaurus": "^2.0.2",
"@types/node": "^18.18.6",
"fast-check": "workspace:*",
"jest": "^29.7.0",
"typescript": "~5.2.2"
Expand Down

0 comments on commit b8c7bd3

Please sign in to comment.