Skip to content

Commit

Permalink
fix: update bundling that broke
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelvesavuori committed Sep 10, 2024
1 parent 746fe18 commit 22e3dde
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 11 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "standardlint",
"description": "Extensible standards linter and auditor.",
"version": "1.1.1",
"version": "1.1.2",
"author": "Mikael Vesavuori",
"license": "MIT",
"keywords": [
Expand All @@ -16,7 +16,8 @@
"auditor",
"engops"
],
"main": "dist/index.js",
"main": "lib/index.cjs",
"module": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mikaelvesavuori/standardlint"
Expand All @@ -25,9 +26,15 @@
"url": "https://github.com/mikaelvesavuori/standardlint/issues"
},
"homepage": "https://github.com/mikaelvesavuori/standardlint",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.js"
}
},
"files": [
"/dist",
"!/dist/**/*.map",
"/lib",
"!/lib/**/*.map",
"!/tests"
],
"bin": {
Expand Down

0 comments on commit 22e3dde

Please sign in to comment.