Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: infrastructure for injecting scripts into DOMWorlds #8801

Merged
merged 1 commit into from Aug 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .eslintignore
Expand Up @@ -7,7 +7,7 @@ build/
lib/

# Generated files
tsconfig.tsbuildinfo
**/*.tsbuildinfo
puppeteer.api.json
puppeteer*.tgz
yarn.lock
Expand All @@ -18,9 +18,11 @@ yarn.lock
test/output-*/
.dev_profile*
coverage/
src/generated

# IDE Artifacts
.vscode
.devcontainer

# Misc
.DS_Store
Expand All @@ -32,6 +34,7 @@ coverage/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

## [END] Keep in sync with .gitignore

# ESLint ignores.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
run: npm install
- name: Build
run: |
node utils/generate_version_file.js
ts-node utils/generate_sources.ts
jrandolf marked this conversation as resolved.
Show resolved Hide resolved
npm run docs
- name: Version docs
working-directory: ./website
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -17,6 +17,7 @@ yarn.lock
test/output-*/
.dev_profile*
coverage/
src/generated

# IDE Artifacts
.vscode
Expand Down
4 changes: 3 additions & 1 deletion .prettierignore
Expand Up @@ -7,7 +7,7 @@ build/
lib/

# Generated files
tsconfig.tsbuildinfo
**/*.tsbuildinfo
puppeteer.api.json
puppeteer*.tgz
yarn.lock
Expand All @@ -18,9 +18,11 @@ yarn.lock
test/output-*/
.dev_profile*
coverage/
src/generated

# IDE Artifacts
.vscode
.devcontainer

# Misc
.DS_Store
Expand Down