Skip to content

Commit 3668d2c

Browse files
simplify configs; update dependencies
1 parent f3eeeb9 commit 3668d2c

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

.editorconfig

+2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ insert_final_newline = true
1010
charset = utf-8
1111
indent_style = tab
1212
indent_size = 2
13+
max_line_length = 100
1314

1415
[*.{json,yaml,md}]
1516
charset = utf-8
1617
indent_style = space
1718
indent_size = 2
19+
max_line_length = 80

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Rollwright
22

3-
A set of tools to make [Playwright](https://playwright.dev) comfortable for UI integration testing.
3+
A set of tools to make [Playwright](https://playwright.dev) comfortable for UI
4+
integration testing.
45

5-
Playwright is a feature rich platform for browser automation. Playwright Test is a powerful testing
6-
framework built on top of the automation capabilities. The main target of the testing framework is
7-
end-to-end tests, so often developers has to opt for other testing framework (Jest, Vitest, etc).
6+
Playwright is a feature rich platform for browser automation. Playwright Test is
7+
a powerful testing framework built on top of the automation capabilities. The
8+
main target of the testing framework is end-to-end tests, so often developers
9+
has to opt for other testing framework (Jest, Vitest, etc). Rollwright makes
10+
Playwright suitable for Component testing. No additional setup needed.
811

912
```js
1013
import { test } from "rollwright";

docs/package.json

-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,5 @@
88
},
99
"dependencies": {
1010
"vitepress": "^1.0.2"
11-
},
12-
"prettier": {
13-
"printWidth": 80,
14-
"proseWrap": "always"
1511
}
1612
}

examples/angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"@angular/compiler": "^17.3.0",
1111
"@angular/core": "^17.3.0",
1212
"@angular/platform-browser": "^17.3.0",
13-
"@angular/platform-browser-dynamic": "^17.3.2",
13+
"@angular/platform-browser-dynamic": "^17.3.3",
1414
"@playwright/test": "^1.42.1",
1515
"@rollup/plugin-swc": "^0.3.0",
1616
"rollwright": "file:../../packages/rollwright",

examples/react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"@radix-ui/react-dialog": "^1.0.5",
1111
"@rollup/plugin-commonjs": "^25.0.7",
1212
"@rollup/plugin-inject": "^5.0.5",
13-
"@types/node": "^20.12.2",
13+
"@types/node": "^20.12.4",
1414
"@types/react": "^18.2.74",
15-
"@types/react-dom": "^18.2.23",
15+
"@types/react-dom": "^18.2.24",
1616
"@types/sinon": "^17.0.3",
1717
"react": "^18.2.0",
1818
"react-dom": "^18.2.0",

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"typescript": "^5.4.3"
1212
},
1313
"prettier": {
14-
"printWidth": 100,
1514
"proseWrap": "always",
1615
"experimentalTernaries": true
1716
}

packages/rollup-plugin-worker-url/package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
55
"main": "./plugin.js",
66
"module": "./plugin.js",
77
"types": "./plugin.d.ts",
8+
"keywords": [
9+
"rollup-plugin"
10+
],
811
"scripts": {
912
"test": "node --test --experimental-test-coverage"
1013
},
1114
"peerDependencies": {
12-
"rollup": "^4.13.2"
15+
"rollup": "^4.14.0"
1316
},
1417
"dependencies": {
15-
"magic-string": "^0.30.8"
18+
"magic-string": "^0.30.9"
1619
}
1720
}

packages/rollup-plugin-worker-url/plugin.js

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import MagicString from "magic-string";
22

3-
/**
4-
* @returns {import("rollup").Plugin}
5-
*/
63
export function worker() {
74
let workerUsageRegex = /\bnew\s+(?:Worker|SharedWorker)/g;
85
return {

packages/rollwright/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
"types": "./fixture.d.ts",
1212
"peerDependencies": {
1313
"@playwright/test": "^1.42.1",
14-
"rollup": "^4.13.2"
14+
"rollup": "^4.14.0"
1515
},
1616
"dependencies": {
1717
"@hono/node-server": "^1.9.1",
1818
"@rollup/plugin-node-resolve": "^15.2.3",
1919
"@rollup/pluginutils": "^5.1.0",
20-
"hono": "^4.2.0",
20+
"hono": "^4.2.1",
2121
"istanbul-lib-coverage": "^3.2.2",
2222
"istanbul-lib-instrument": "^6.0.2",
2323
"istanbul-lib-report": "^3.0.1",

0 commit comments

Comments
 (0)