Skip to content

Commit

Permalink
chore(version): pin
Browse files Browse the repository at this point in the history
  • Loading branch information
Airkro committed Aug 23, 2024
1 parent d4aa391 commit 33c4c37
Show file tree
Hide file tree
Showing 6 changed files with 170 additions and 190 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@nice-move/prettier-config": "^0.12.5",
"@nice-move/syncpack-config": "^0.2.6",
"@nice-move/tsconfig": "^0.2.5",
"best-shot": "0.7.1",
"best-shot": "0.7.2",
"eslint": "^8.57.0",
"garou": "^0.7.8",
"prettier": "^3.3.3",
Expand All @@ -50,7 +50,8 @@
"packageManager": "[email protected]",
"engines": {
"node": ">=22.0.0 || ^18.20.0 || ^20.4.0",
"npm": "^9.5.0"
"npm": "^10.5.0",
"pnpm": "^9.6.0"
},
"eslintConfig": {
"extends": "@nice-move/eslint-config-base"
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/lib/action/pack.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { execFileSync } from 'node:child_process';
import { mkdirSync } from 'node:fs';
import { resolve } from 'node:path';

import { globbySync } from 'globby';
Expand Down Expand Up @@ -33,7 +34,7 @@ export async function action({ pattern, name, dir, cwd }) {
try {
execFileSync('ls', [dir]);
} catch {
execFileSync('mkdir', ['-p', dir]);
mkdirSync(dir, { recursive: true });
}

function exec(command, args) {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bring-it/cli",
"version": "0.9.7",
"version": "0.9.8",
"description": "Common command line interface of 'bring-it'",
"license": "MIT",
"author": {
Expand Down
5 changes: 2 additions & 3 deletions packages/notify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bring-it/notify",
"version": "0.3.14",
"version": "0.3.15",
"description": "Send releases notifications",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -51,8 +51,7 @@
"@bring-it/cli": "workspace:~"
},
"engines": {
"node": ">=22.0.0 || ^18.20.0 || ^20.4.0",
"npm": "^9.5.0"
"node": ">=22.0.0 || ^18.20.0 || ^20.4.0"
},
"publishConfig": {
"access": "public",
Expand Down
3 changes: 2 additions & 1 deletion packages/npm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
},
"engines": {
"node": ">=22.0.0 || ^18.20.0 || ^20.4.0",
"npm": ">=9.5.0"
"npm": "^10.5.0",
"pnpm": "^9.6.0"
},
"publishConfig": {
"access": "public",
Expand Down
Loading

0 comments on commit 33c4c37

Please sign in to comment.