Skip to content

Commit

Permalink
updated: Riot compiler and esm syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
GianlucaGuarini committed Aug 18, 2023
1 parent 8bd0a99 commit 6178f71
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
8 changes: 0 additions & 8 deletions .eslintrc

This file was deleted.

1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
extends: eslint-config-riot
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
test/fixtures/*
dist/*
1 change: 1 addition & 0 deletions .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('@riotjs/prettier-config')
8 changes: 4 additions & 4 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ export default {
{
file: pkg.main,
format: 'cjs',
interop: false
interop: false,
},
{
file: pkg.module,
format: 'es'
}
]
format: 'es',
},
],
}

0 comments on commit 6178f71

Please sign in to comment.