Skip to content

Commit b9b7134

Browse files
committed
fix(dual-mode): fixed the esm bundle to be true esm
and confirmed by converting the integration tests to esm
1 parent 26281d9 commit b9b7134

File tree

6 files changed

+35
-16
lines changed

6 files changed

+35
-16
lines changed

cucumber.js

-6
This file was deleted.

cucumber.mjs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
const base = {
2+
formatOptions: {snippetInterface: 'async-await'},
3+
import: ['test/integration/features/**/*.mjs'],
4+
publishQuiet: true
5+
};
6+
7+
export default base;
8+
9+
export const wip = {
10+
...base,
11+
tags: '@wip and not @skip'
12+
};
13+
14+
export const noWip = {
15+
...base,
16+
tags: 'not @skip and not @wip'
17+
};
18+
19+
export const focus = {
20+
...base,
21+
tags: '@focus'
22+
};

example.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// #### Import
22
// remark-usage-ignore-next
33
import stubbedFs from 'mock-fs';
4-
import {scaffold} from './lib/index.cjs';
4+
import {scaffold} from './lib/index.js';
55

66
// remark-usage-ignore-next
77
stubbedFs();

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"pretest:integration:base": "run-s build",
1818
"lint:gherkin": "gherkin-lint",
1919
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
20-
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration --profile base",
20+
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration",
2121
"test:integration:debug": "DEBUG=test run-s test:integration",
2222
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
2323
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
@@ -44,11 +44,11 @@
4444
},
4545
"sideEffects": false,
4646
"runkitExampleFilename": "./example.js",
47-
"main": "./lib/index.cjs.js",
48-
"module": "./lib/index.es.js",
47+
"main": "./lib/index.js",
48+
"module": "./lib/index.mjs",
4949
"exports": {
50-
"require": "./lib/index.cjs.js",
51-
"import": "./lib/index.es.js"
50+
"require": "./lib/index.js",
51+
"import": "./lib/index.mjs"
5252
},
5353
"version": "0.0.0-semantically-released",
5454
"devDependencies": {

rollup.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
input: 'src/index.js',
55
plugins: [autoExternal()],
66
output: [
7-
{file: 'lib/index.cjs.js', format: 'cjs', sourcemap: true},
8-
{file: 'lib/index.es.js', format: 'es', sourcemap: true}
7+
{file: 'lib/index.js', format: 'cjs', sourcemap: true},
8+
{file: 'lib/index.mjs', format: 'es', sourcemap: true}
99
]
1010
};

test/integration/features/step_definitions/common-steps.js test/integration/features/step_definitions/common-steps.mjs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
import {resolve} from 'path';
1+
import {dirname, resolve} from 'node:path';
2+
import {fileURLToPath} from 'node:url';
3+
24
import {After, When} from '@cucumber/cucumber';
35
import stubbedFs from 'mock-fs';
46

7+
const __dirname = dirname(fileURLToPath(import.meta.url));
58
const stubbedNodeModules = stubbedFs.load(resolve(__dirname, '..', '..', '..', '..', 'node_modules'));
69

710
After(function () {
@@ -10,7 +13,7 @@ After(function () {
1013

1114
When('the project is scaffolded', async function () {
1215
// eslint-disable-next-line import/no-extraneous-dependencies,import/no-unresolved
13-
const {scaffold} = require('@form8ion/prettier');
16+
const {scaffold} = await import('@form8ion/prettier');
1417

1518
stubbedFs({
1619
node_modules: stubbedNodeModules

0 commit comments

Comments
 (0)