Skip to content

Commit a8a8349

Browse files
committed
release 3.3.0
1 parent 1966153 commit a8a8349

File tree

24 files changed

+2192
-2670
lines changed

24 files changed

+2192
-2670
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Logs
22

3+
## 2024.11.21 v3.3.0
4+
5+
1. compatible for yarn workspaces.nohoist
6+
2. Detect bun
7+
38
## 2023.08.28 v3.2.0
49

510
1. fix bugs

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-kit/monorepo",
33
"description": "Some simple utilities for nodejs",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"packageManager": "pnpm@8.6.12",
66
"main": "index.js",
77
"files": [

packages/extra/cp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-kit/extra.cp",
33
"description": "Some shared extra utilities for nodejs build-in child_process modules",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm-bundler.js",
77
"types": "dist/index.d.ts",

packages/extra/fs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-kit/extra.fs",
33
"description": "Some shared extra utilities for nodejs build-in fs modules",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm-bundler.js",
77
"types": "dist/index.d.ts",

packages/extra/path/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-kit/extra.path",
33
"description": "Some shared extra utilities for nodejs build-in path modules",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm-bundler.js",
77
"types": "dist/index.d.ts",

packages/lerna-workspace-info/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-kit/lerna-workspace-info",
33
"description": "A simple utility to get the lerna workspace information",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm-bundler.js",
77
"types": "dist/index.d.ts",

packages/lerna-workspace-root/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@node-kit/lerna-workspace-root",
33
"description": "A simple utility to get the lerna workspace root",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm-bundler.js",
77
"types": "dist/index.d.ts",

packages/lerna-workspace-root/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function lernaWorkspaceRoot(cwd: string = process.cwd()): Promise<s
1818
? join(workspaceManifestDirEnvVar, WORKSPACE_MANIFEST_FILENAME)
1919
: await findUp(WORKSPACE_MANIFEST_FILENAME, {
2020
cwd: await getRealPath(cwd)
21-
})
21+
})
2222

2323
return (workspaceManifestPath && dirname(workspaceManifestPath)) || null
2424
}
@@ -36,7 +36,7 @@ export function lernaWorkspaceRootSync(cwd: string = process.cwd()): string | nu
3636
? join(workspaceManifestDirEnvVar, WORKSPACE_MANIFEST_FILENAME)
3737
: findUp.sync(WORKSPACE_MANIFEST_FILENAME, {
3838
cwd: getRealPathSync(cwd)
39-
})
39+
})
4040

4141
return (workspaceManifestPath && dirname(workspaceManifestPath)) || null
4242
}

packages/monorepo-root/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "monorepo-root",
33
"description": "A simple utility to get the monorepo root",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm-bundler.js",
77
"types": "dist/index.d.ts",

packages/os-lang/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "os-lang",
33
"description": "Get the system lang",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm-bundler.js",
77
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)