mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
505d94ab1a
This patch: - drops dependency on playwright-core in all our packages. Instead of the dependency, packages are now built with `//packages/build_package.sh` script. - unifies `browsers.json` - now there's a single `//browsers.json` file that is used to manage browser revisions. This patch temporary switches canary publishing to `--dryn-run` from CI/CD so that we can verify that it does sane things. We'll unify all our package management scripts under `//packages/` in a follow-up. Fixes #2268
24 lines
525 B
Plaintext
24 lines
525 B
Plaintext
# NOTE: .npmignore is copied over to every subpackage in //packages when NPM packages
|
|
# are built.
|
|
#
|
|
# 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
|
|
!types/*
|
|
!index.d.ts
|
|
|
|
!index.js
|
|
!install.js
|
|
!README.md
|
|
!LICENSE
|
|
!NOTICE
|
|
|
|
# browser descriptor
|
|
!browsers.json
|