2020-08-23 13:46:40 -07:00
|
|
|
# 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, but not map files.
|
|
|
|
!lib/**/*.js
|
2021-02-05 16:19:09 -08:00
|
|
|
# Include web assets for recorder, trace viewer, etc.
|
|
|
|
!lib/**/*.html
|
|
|
|
!lib/**/*.png
|
|
|
|
!lib/**/*.ttf
|
2020-08-23 13:46:40 -07:00
|
|
|
# Exclude injected files. A preprocessed version of these is included via lib/generated.
|
2020-08-23 20:25:59 -07:00
|
|
|
# See src/server/injected/README.md.
|
2021-02-05 16:19:09 -08:00
|
|
|
lib/**/injected/
|
2020-09-08 17:51:56 -07:00
|
|
|
# Include all binaries that we ship with the package.
|
|
|
|
!bin/*
|
2020-09-09 09:51:28 -07:00
|
|
|
# Include FFMPEG
|
|
|
|
!third_party/ffmpeg/*
|
2020-08-23 13:46:40 -07:00
|
|
|
# Include generated types and entrypoint.
|
|
|
|
!types/*
|
|
|
|
!index.d.ts
|
2021-07-16 21:15:03 -07:00
|
|
|
!reporter.d.ts
|
2020-08-23 13:46:40 -07:00
|
|
|
# Include main entrypoint.
|
|
|
|
!index.js
|
2021-07-16 21:15:03 -07:00
|
|
|
!reporter.js
|
2020-08-23 13:46:40 -07:00
|
|
|
# Include main entrypoint for ES Modules.
|
|
|
|
!index.mjs
|
2021-07-16 21:15:03 -07:00
|
|
|
!reporter.mjs
|
2020-08-23 13:46:40 -07:00
|
|
|
# Include installer.
|
|
|
|
!install.js
|
|
|
|
# Include essentials.
|
|
|
|
!README.md
|
|
|
|
!LICENSE
|
|
|
|
!NOTICE
|
|
|
|
# Include browser descriptors.
|
|
|
|
!browsers.json
|
2021-05-18 09:29:48 +02:00
|
|
|
# Include generated devices descriptors
|
|
|
|
!deviceDescriptorsSource.json
|