playwright/packages/playwright-core/.npmignore
Andrey Lushnikov b67cef2c4d
feat: introduce Dockerfile.remote image (#20691)
When this image is launched, it exposes a single endpoint
that can be used to connect to and to launch browsers.
2023-02-07 10:50:44 -08:00

42 lines
1.0 KiB
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, but not map files.
!lib/**/*.js
# Include web assets for recorder, trace viewer, etc.
!lib/**/*.css
!lib/**/*.html
!lib/**/*.png
!lib/**/*.ttf
# Exclude injected files. A preprocessed version of these is included via lib/generated.
# See src/server/injected/README.md.
lib/**/injected/
# Include all binaries that we ship with the package.
!bin/*
# Include all shell files in the lib/containers/*
!lib/containers/*.sh
# Include FFMPEG
!third_party/ffmpeg/*
# Include generated types and entrypoint.
!types/*
!index.d.ts
!reporter.d.ts
# Include main entrypoint.
!index.js
!reporter.js
# Include main entrypoint for ES Modules.
!index.mjs
!reporter.mjs
# Include installer.
!install.js
# Include essentials.
!README.md
!LICENSE
!NOTICE
# Include browser descriptors.
!browsers.json
# Include generated devices descriptors
!deviceDescriptorsSource.json
!ThirdPartyNotices.txt