@jaypie/express 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@jaypie/express",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "author": "Finlayson Studio",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {
8
8
  "default": {
9
- "require": "./dist/module.cjs.js",
9
+ "require": "./dist/module.cjs",
10
10
  "default": "./src/index.js"
11
11
  }
12
12
  }
package/rollup.config.mjs CHANGED
@@ -6,7 +6,7 @@ export default {
6
6
  input: "src/index.js", // Path to your main JavaScript file
7
7
  output: [
8
8
  {
9
- file: "dist/module.cjs.js", // Output file for CommonJS
9
+ file: "dist/module.cjs", // Output file for CommonJS
10
10
  format: "cjs", // CommonJS format
11
11
  },
12
12
  {
File without changes