Skip to content

Commit

Permalink
Merge pull request #5 from CudoVentures/cudos-dev
Browse files Browse the repository at this point in the history
Cudos dev
  • Loading branch information
SpaghettiOverload authored Jun 17, 2022
2 parents 1a34418 + c88b40b commit 79c77ac
Show file tree
Hide file tree
Showing 14 changed files with 19,392 additions and 657 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

.env
node_modules
dist
dist-ssr
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
- `yarn install`
- `yarn build`
- `yarn dev`

## running Tests
- `yarn test`
27 changes: 27 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
module.exports = {
presets: [
[
"@babel/preset-env",
{
useBuiltIns: 'entry',
corejs: '2',
targets: {
node: "current",
},
},
],
"@babel/preset-react",
"@babel/preset-typescript",
],
plugins: [
function () {
return {
visitor: {
MetaProperty(path) {
path.replaceWithSourceString('process')
},
},
}
},
],
}
1 change: 1 addition & 0 deletions jest-setup.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import "@testing-library/jest-dom"
Loading

0 comments on commit 79c77ac

Please sign in to comment.