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", "name": "@fortawesome/fontawesome-common-types",
"license": "MIT", "license": "MIT",
"types": "./index.d.ts", "types": "./index.d.ts",
"type": "module",
"scripts": { "scripts": {
"postinstall": "node attribution.js" "postinstall": "node attribution.js"
} }

View File

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

View File

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

View File

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

View File

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

View File

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