From ef7cb4b6344c4d704106e81f4385e2197eb7b7d3 Mon Sep 17 00:00:00 2001 From: Ayo Date: Sun, 29 Oct 2023 19:05:00 +0100 Subject: [PATCH] feat(config): distribute .js instead of .mjs --- package-lock.json | 8 ++++---- packages/config/{index.mjs => index.js} | 0 packages/config/package.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) rename packages/config/{index.mjs => index.js} (100%) diff --git a/package-lock.json b/package-lock.json index 631f473..b0b97cb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3983,7 +3983,7 @@ }, "packages/config": { "name": "@mcflyjs/config", - "version": "0.0.11", + "version": "0.0.12", "license": "MIT", "dependencies": { "web-component-base": "^1.9.5" @@ -4046,9 +4046,9 @@ } }, "templates/basic/node_modules/@mcflyjs/config": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/@mcflyjs/config/-/config-0.0.10.tgz", - "integrity": "sha512-PIDno3dXE914MjC7I9wLkOHqGeYrO79RUpyGZj+5gEHErsZYXZqBwI7ns4rQ7S3WDBbjmWnUX9Q13ctM0Wun9w==", + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/@mcflyjs/config/-/config-0.0.11.tgz", + "integrity": "sha512-RbcRnic2dt5IthOczkAUMJYt5g7GMYO0PCMHRQeea+I+k1yyTv2ZCcfrCIRRmRILjjXlbo4n1zMcAbv006qWAg==", "dependencies": { "web-component-base": "^1.9.5" } diff --git a/packages/config/index.mjs b/packages/config/index.js similarity index 100% rename from packages/config/index.mjs rename to packages/config/index.js diff --git a/packages/config/package.json b/packages/config/package.json index 3163b16..576b194 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,9 +1,9 @@ { "name": "@mcflyjs/config", - "version": "0.0.11", + "version": "0.0.12", "description": "Nitro configuration for McFly apps", "type": "module", - "main": "index.mjs", + "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" },