Set type: module in package.json

Node documentation recommends package authors explicitly set
`"type": "module"`. Without this, sveltekit (and possibly other tooling)
incorrectly treats the ES modules as CommonJS.
This commit is contained in:
David Baynard 2022-02-18 23:33:08 +00:00
parent 0078392516
commit 945a5a9cb5
6 changed files with 6 additions and 0 deletions

View File

@ -51,6 +51,7 @@
"name": "@fortawesome/fontawesome-common-types",
"license": "MIT",
"types": "./index.d.ts",
"type": "module",
"scripts": {
"postinstall": "node attribution.js"
}

View File

@ -52,6 +52,7 @@
"main": "js/fontawesome.js",
"style": "css/fontawesome.css",
"license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)",
"type": "module",
"scripts": {
"postinstall": "node attribution.js"
}

View File

@ -92,6 +92,7 @@
"./index.js",
"./index.es.js"
],
"type": "module",
"scripts": {
"postinstall": "node attribution.js"
}

View File

@ -75,6 +75,7 @@
},
"./*": "./*.js"
},
"type": "module",
"scripts": {
"postinstall": "node attribution.js"
}

View File

@ -75,6 +75,7 @@
},
"./*": "./*.js"
},
"type": "module",
"scripts": {
"postinstall": "node attribution.js"
}

View File

@ -75,6 +75,7 @@
},
"./*": "./*.js"
},
"type": "module",
"scripts": {
"postinstall": "node attribution.js"
}