Skip to content

Commit

Permalink
fix: Removed module type
Browse files Browse the repository at this point in the history
  • Loading branch information
JayPaulinCodes committed Feb 28, 2024
1 parent 164a255 commit a2a04c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"name": "@devjacob/smush",
"version": "1.0.0",
"version": "1.0.6",
"description": "A simple function to make merging objects together a bit easier, because why not!",
"author": "Jacob Paulin",
"license": "MPL-2.0",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
Expand All @@ -21,8 +20,8 @@
"test:list": "mocha --parallel --full-trace --recursive --reporter list",
"pretest:progress": "npm run build",
"test:progress": "mocha --recursive --reporter progress",
"prepublish": "npm run build",
"publish": "npm publish --access=publish"
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access=public"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"useUnknownInCatchVariables": true, // https://www.typescriptlang.org/tsconfig#useUnknownInCatchVariables

// Modules
"module": "es2015",
"module": "CommonJS",
"moduleResolution": "node",
"baseUrl": "./src",

Expand Down

0 comments on commit a2a04c9

Please sign in to comment.