Skip to content

Commit

Permalink
fix: Build config and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
gregoryporebski committed Mar 14, 2024
1 parent 32da6a0 commit 4ae5891
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ if (!build.success) {
}

const buildPackage = {
name: config.name,
version: config.version,
author: config.author,
description: config.description,
keywords: config.keywords,
license: config.license,
author: config.author,
repository: config.repository,
main: "./index.js",
types: "./index.d.ts",
name: config.name,
release: config.release,
repository: config.repository,
type: "module",
keywords: config.keywords,
types: "./index.d.ts",
version: config.version,
};

fs.writeFileSync(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/gregoryporebski/g-utils.git"
"url": "git+https://github.com/gregoryporebski/g-utils.git"
},
"module": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down

0 comments on commit 4ae5891

Please sign in to comment.