Skip to content

Commit 3fdff33

Browse files
fix(dist): some minor review and cleanup of typings
1 parent 3f3e699 commit 3fdff33

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
"description": "A UTS #46 processing algorithm for IDNA2008 strings",
44
"version": "4.0.0",
55
"private": false,
6-
"module": "dist/index.esm.js",
7-
"main": "dist/index.cjs.js",
8-
"typings": "dist/index.d.ts",
6+
"module": "dist/index.mjs",
7+
"main": "dist/index.cjs",
98
"license": "MIT",
109
"sideEffects": false,
1110
"engines": {

rollup-esm.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export default {
22
input: 'src/index.js',
33
output: [
44
{
5-
file: 'dist/index.esm.js',
5+
file: 'dist/index.mjs',
66
format: 'es',
77
},
88
],

rollup.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
input: 'src/index.js',
77
output: [
88
{
9-
file: 'dist/index.cjs.js',
9+
file: 'dist/index.cjs',
1010
format: 'cjs',
1111
},
1212
{

0 commit comments

Comments
 (0)