mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-11 01:13:16 +03:00
fa1d286d56
## playwright-chromium - installs chromium - exposes chromium api from playwright-core ## playwright-firefox - installs firefox - exposes firefox api from playwright-core ## playwright-webkit - installs webkit - exposes webkit api from playwright-core ## playwright-core - downloads no browsers - contains all of the js code - designed for internal use ## playwright - downloads all browsers - exposes the entire api from playwright-core ## github - downloads all browsers, generates protocol definitions, builds typescript - exposes "playwright-core" api
21 lines
485 B
Plaintext
21 lines
485 B
Plaintext
# this ignores everything by default, except for package.json and LICENSE and README.md
|
|
# see https://docs.npmjs.com/misc/developers
|
|
**/*
|
|
|
|
# include sources from lib except for injected, but not map files
|
|
!lib/**/*.js
|
|
# Injected files are included via lib/generated, see src/injected/README.md
|
|
lib/injected/
|
|
#types
|
|
!lib/**/*.d.ts
|
|
!index.d.ts
|
|
|
|
# used for npm install scripts
|
|
!download-browser.js
|
|
|
|
# root for "playwright-core" package
|
|
!index.js
|
|
|
|
# root for "playwright-core/web"
|
|
!web.js
|