Skip to content

Commit

Permalink
Merge pull request #1883 from iamkun/dev
Browse files Browse the repository at this point in the history
D2M
  • Loading branch information
iamkun authored May 6, 2022
2 parents 4acbb72 + 05cba7e commit 08a8293
Show file tree
Hide file tree
Showing 36 changed files with 32,153 additions and 7,609 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# npm
node_modules
yarn.lock
package-lock.json

# jest
coverage
Expand Down
40 changes: 20 additions & 20 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
module.exports = {
"env": {
"test": {
"presets": [
"@babel/preset-env"
]
},
"build": {
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"loose": true
}
]
]
}
}
};
module.exports = {
env: {
test: {
presets: [
'@babel/preset-env'
]
},
build: {
presets: [
[
'@babel/preset-env',
{
modules: false,
loose: true
}
]
]
}
}
}
Loading

0 comments on commit 08a8293

Please sign in to comment.