Skip to content

Commit 1a821e1

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions-dependencies-37cd5763f6
2 parents 66493a2 + 6796232 commit 1a821e1

File tree

13 files changed

+3918
-2108
lines changed

13 files changed

+3918
-2108
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/check-dist.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# For our project, we generate this file through a build process from other source files.
55
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
66
name: Check dist/
7+
permissions:
8+
contents: read
79

810
on:
911
push:

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: "Test"
2+
permissions:
3+
contents: read
24
on:
35
pull_request:
46
workflow_dispatch:

babel.config.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
module.exports = {
1+
export default {
22
presets: [
3-
['@babel/preset-env', { targets: { node: 'current' } }],
4-
'@babel/preset-typescript',
5-
],
3+
[
4+
'@babel/preset-env',
5+
{
6+
targets: { node: 'current' },
7+
modules: false
8+
}
9+
],
10+
'@babel/preset-typescript'
11+
]
612
};

0 commit comments

Comments
 (0)