Skip to content

Commit

Permalink
Update package.json version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
NazmusSayad committed Sep 26, 2024
1 parent 8cfb47d commit f53e6bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "npmize",
"version": "1.1.2",
"version": "1.1.3",
"description": "Let's create an npm package without worrying about anything.",
"bin": "./dist/index.js",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions src/scripts/tsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ export default function (
) {
const runner = options.async ? crossSpawn : crossSpawn.sync
runner('npx', ['tsc', ...args], {
// stdio: options.stdio || 'inherit',
stdio: 'ignore',
stdio: options.stdio || 'inherit',
cwd,
})
}
5 changes: 1 addition & 4 deletions src/scripts/tsconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,7 @@ export function resolveImportPath(
importPath,
baseUrl,
{ baseUrl, paths },
moduleResolutionHost,
undefined,
undefined,
ModuleKind.CommonJS
moduleResolutionHost
)

if (resolved.resolvedModule?.packageId) return
Expand Down

0 comments on commit f53e6bc

Please sign in to comment.