Skip to content

Commit

Permalink
Fix Jest command?
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj committed Jan 15, 2024
1 parent 50cc57d commit 15ea59c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"bootstrap": "lerna bootstrap",
"prepublish": "lerna run build",
"lint": "eslint packages",
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"dev": "lerna run dev --scope @react-pdf/examples",
"changeset": "changeset",
"version-packages": "changeset version",
Expand Down
2 changes: 1 addition & 1 deletion packages/fns/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"directory": "packages/fns"
},
"scripts": {
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"build": "rimraf ./lib && rollup -c",
"watch": "rimraf ./lib && rollup -c -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/font/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"./lib/index.cjs.js": "./lib/index.browser.cjs.js"
},
"scripts": {
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"build": "rimraf ./lib && rollup -c",
"watch": "rimraf ./lib && rollup -c -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"directory": "packages/image"
},
"scripts": {
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"build": "rimraf ./lib && rollup -c",
"watch": "rimraf ./lib && rollup -c -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/layout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"directory": "packages/layout"
},
"scripts": {
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"build": "rimraf ./lib && rollup -c",
"watch": "rimraf ./lib && rollup -c -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"scripts": {
"build": "babel src --out-dir lib",
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\""
"test": "node --experimental-vm-modules \"$(yarn bin jest)\""
},
"files": [
"lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/render/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"directory": "packages/render"
},
"scripts": {
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"build": "rimraf ./lib && rollup -c",
"watch": "rimraf ./lib && rollup -c -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/renderer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"watch": "rimraf ./lib && rollup -c -w",
"size": "size-limit",
"lint": "eslint src",
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\""
"test": "node --experimental-vm-modules \"$(yarn bin jest)\""
},
"dependencies": {
"@babel/runtime": "^7.20.13",
Expand Down
2 changes: 1 addition & 1 deletion packages/stylesheet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"directory": "packages/stylesheet"
},
"scripts": {
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"build": "rimraf ./lib && rollup -c",
"watch": "rimraf ./lib && rollup -c -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/svgkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"Diego Muracciole <[email protected]>"
],
"scripts": {
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"build": "rimraf ./lib && babel src --out-dir lib",
"watch": "rimraf ./lib && babel src --out-dir lib --watch"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/textkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"Diego Muracciole <[email protected]>"
],
"scripts": {
"test": "yarn node --experimental-vm-modules \"$(yarn bin jest)\"",
"test": "node --experimental-vm-modules \"$(yarn bin jest)\"",
"build": "rimraf ./lib && rollup -c",
"watch": "rimraf ./lib && rollup -c -w"
},
Expand Down

0 comments on commit 15ea59c

Please sign in to comment.