mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
57313e3f73
`protocol.d.ts` had to move to `protocol.ts` otherwise typescript refuses to include it in the out directory. Removed the old d.ts generator. It will need to be rewritten anyway. These new types include private stuff that they probably shouldn't, and are missing documentation. I'll follow up with a better d.ts generator later. #6
24 lines
507 B
Plaintext
24 lines
507 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
|
|
|
|
# root for "playwright" package
|
|
!index.js
|
|
|
|
# specific browsers
|
|
!chromium.js
|
|
!firefox.js
|
|
!webkit.js
|
|
|
|
# Dgozman says to remove these
|
|
!DeviceDescriptors.js
|
|
!Errors.js
|