Skip to content

Commit

Permalink
merge pull request #6
Browse files Browse the repository at this point in the history
Support installing from GitHub
  • Loading branch information
Nipheris authored Mar 27, 2024
2 parents b0dc8e8 + 421eb4e commit 051b4aa
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"name": "jewel-case",
"version": "0.0.0",
"exports": "./dist/index.mjs",
"bin": {
"jewelcase": "./dist/cli.mjs"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@tsconfig/esm": "^1.0.2",
Expand All @@ -21,11 +27,12 @@
"typescript": "^5.0.4"
},
"engines": {
"node": "^18.13.0"
"node": ">=18.13.0"
},
"packageManager": "[email protected]",
"private": true,
"scripts": {
"prepare": "npm run src:build",
"jest": "jest",
"build": "pnpm src:build",
"lint": "pnpm lint:ec && pnpm lint:eslint .",
Expand Down
5 changes: 4 additions & 1 deletion tests/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"extends": "../tsconfig-base.json",
"include": ["**/*.mts"]
"include": ["**/*.mts"],
"compilerOptions": {
"moduleResolution": "node16"
}
}
5 changes: 1 addition & 4 deletions tsconfig-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,5 @@
"@tsconfig/node18/tsconfig.json",
"@tsconfig/strictest/tsconfig.json",
"@tsconfig/esm/tsconfig.json"
],
"compilerOptions": {
"moduleResolution": "node16"
}
]
}

0 comments on commit 051b4aa

Please sign in to comment.