playwright-ui5 1.1.2 → 1.1.3

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.
@@ -1,4 +1,4 @@
1
- import { selectors } from 'playwright';
1
+ import { selectors } from 'playwright-core';
2
2
  export type SelectorEngine = Parameters<typeof selectors.register>[1];
3
3
  declare const selectorEngine: SelectorEngine;
4
4
  export default selectorEngine;
@@ -1 +1 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/node/main.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AAEtC,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAA;AAErE,QAAA,MAAM,cAAc,EAAE,cAMrB,CAAA;AAED,eAAe,cAAc,CAAA"}
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/node/main.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAE3C,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAA;AAErE,QAAA,MAAM,cAAc,EAAE,cAMrB,CAAA;AAED,eAAe,cAAc,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright-ui5",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "files": [
5
5
  "dist",
6
6
  "src/node"
@@ -18,7 +18,7 @@
18
18
  "typecheck:config-files": "tsc",
19
19
  "build": "rimraf ./dist && npm run build:browser && npm run build:node",
20
20
  "check": "npm run typecheck:config-files && npm run build && npm run test && npm run lint:check && npm run format:check",
21
- "setup": "npm ci && playwright install-deps"
21
+ "setup": "npm ci && playwright install-deps && playwright install"
22
22
  },
23
23
  "keywords": [],
24
24
  "author": "detachhead",
@@ -30,7 +30,7 @@
30
30
  "devDependencies": {
31
31
  "@detachhead/eslint-config": "^1.2.0",
32
32
  "@detachhead/ts-helpers": "^16.1.0",
33
- "@playwright/test": "^1.33.0",
33
+ "@playwright/test": "^1.35.0",
34
34
  "@sapui5/ts-types": "^1.113.0",
35
35
  "@trivago/prettier-plugin-sort-imports": "^4.1.1",
36
36
  "@types/eslint": "^8.4.6",
@@ -44,9 +44,9 @@
44
44
  "typescript": "^4.7.4"
45
45
  },
46
46
  "dependencies": {
47
- "css-selector-parser": "^1.4.1",
47
+ "css-selector-parser": "^2",
48
48
  "lodash": "^4.17.21",
49
- "playwright": "^1.33.0",
49
+ "playwright-core": "^1.33.0",
50
50
  "throw-expression": "^1.0.2"
51
51
  },
52
52
  "//": "https://github.com/trivago/prettier-plugin-sort-imports/issues/204#issuecomment-1431287240",
package/src/node/main.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { readFileSync } from 'fs'
2
2
  import { join } from 'path'
3
- import { selectors } from 'playwright'
3
+ import { selectors } from 'playwright-core'
4
4
 
5
5
  export type SelectorEngine = Parameters<typeof selectors.register>[1]
6
6