Skip to content

Commit 64a3d1c

Browse files
committed
feat(esm): convert the project to esm-only
BREAKING CHANGE: the package has been converted to esm-only closes #457
1 parent 4976d21 commit 64a3d1c

File tree

6 files changed

+86
-2134
lines changed

6 files changed

+86
-2134
lines changed

.babelrc

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

cucumber.js

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1-
module.exports = {
2-
base: '--require-module @babel/register --format-options \'{"snippetInterface": "async-await"}\'',
3-
wip: '--tags "@wip"',
4-
noWip: '--tags "not @wip"',
5-
focus: '--tags @focus'
1+
const base = {
2+
formatOptions: {snippetInterface: 'async-await'},
3+
import: ['test/integration/features/**/*.js']
4+
};
5+
6+
export default base;
7+
8+
export const wip = {
9+
...base,
10+
tags: '@wip and not @skip'
11+
};
12+
13+
export const noWip = {
14+
...base,
15+
tags: 'not @skip and not @wip'
16+
};
17+
18+
export const focus = {
19+
...base,
20+
tags: '@focus'
621
};

0 commit comments

Comments
 (0)