From 369bee1e5c431c3b56a0c0bbde72473daf2075e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Zl=C3=A1mal?= Date: Fri, 21 May 2021 09:25:11 -0500 Subject: [PATCH] Explicitly mark all packages with `commonjs` type See: https://nodejs.org/api/packages.html#packages_determining_module_system > Package authors should include the "type" field, even in packages where all sources are CommonJS. Being explicit about the type of the package will future-proof the package in case the default type of Node.js ever changes, and it will also make things easier for build tools and loaders to determine how the files in the package should be interpreted. Related issue: https://github.com/adeira/universe/issues/2341 adeira-source-id: 7288ec22447e6de87afa3b2c0d510eb52772ecb3 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 2cbb989..a73503a 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "private": false, "license": "MIT", "main": "./src/index.js", + "type": "commonjs", "dependencies": { "@adeira/fixtures-tester": "^1.0.1", "@adeira/js": "^2.1.0",