Skip to content

Commit

Permalink
chore: see description
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf committed Aug 17, 2022
1 parent a5f1078 commit 4401ca8
Show file tree
Hide file tree
Showing 52 changed files with 1,649 additions and 205 deletions.
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
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
15 changes: 15 additions & 0 deletions babel.config.json
@@ -0,0 +1,15 @@
{
"assumptions": {
"setPublicClassFields": true
},
"plugins": [
["@babel/plugin-transform-typescript", {"allowDeclareFields": true}],
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-logical-assignment-operators",
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-transform-modules-commonjs"
],
"ignore": ["**/*.d.ts"]
}

0 comments on commit 4401ca8

Please sign in to comment.