Skip to content

Commit f1f13b5

Browse files
committedMar 11, 2025
feat(esm): convert the project to esm
BREAKING CHANGE: this package is now esm-only
1 parent 281cb19 commit f1f13b5

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed
 

‎.remarkrc.js

-3
This file was deleted.

‎.remarkrc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": [
3+
"@form8ion/remark-lint-preset"
4+
]
5+
}

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "opinionated scaffolder for leveraging Cypress for testing a project",
44
"license": "MIT",
55
"version": "0.0.0-semantically-released",
6-
"type": "commonjs",
6+
"type": "module",
77
"engines": {
88
"node": "^18.19.0 || ^20.9.0 || >=22.11.0"
99
},
@@ -12,7 +12,7 @@
1212
"bugs": "https://github.com/form8ion/cypress-scaffolder/issues",
1313
"homepage": "https://npm.im/@form8ion/cypress-scaffolder",
1414
"main": "./lib/index.js",
15-
"module": "./lib/index.mjs",
15+
"exports": "./lib/index.js",
1616
"sideEffects": false,
1717
"scripts": {
1818
"pretest": "run-s build",

‎rollup.config.mjs ‎rollup.config.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export default {
55
input: 'src/index.js',
66
plugins: [autoExternal()],
77
output: [
8-
{file: 'lib/index.js', format: 'cjs', sourcemap: true},
9-
{file: 'lib/index.mjs', format: 'esm', sourcemap: true}
8+
{file: 'lib/index.js', format: 'esm', sourcemap: true}
109
]
1110
};

0 commit comments

Comments
 (0)