-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(esm): converted the project to esm
BREAKING CHANGE: the project is now esm-only
- Loading branch information
Showing
14 changed files
with
511 additions
and
185 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,22 @@ | ||
module.exports = { | ||
base: '--require-module @babel/register --publish-quiet --format-options \'{"snippetInterface": "async-await"}\'', | ||
wip: '--tags "@wip"', | ||
noWip: '--tags "not @wip"', | ||
focus: '--tags @focus' | ||
const base = { | ||
formatOptions: {snippetInterface: 'async-await'}, | ||
import: ['test/integration/features/**/*.js'], | ||
publishQuiet: true | ||
}; | ||
|
||
export default base; | ||
|
||
export const wip = { | ||
...base, | ||
tags: '@wip and not @skip' | ||
}; | ||
|
||
export const noWip = { | ||
...base, | ||
tags: 'not @skip and not @wip' | ||
}; | ||
|
||
export const focus = { | ||
...base, | ||
tags: '@focus' | ||
}; |
Oops, something went wrong.