Skip to content

Commit

Permalink
chore: update pob root
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and christophehurpeau committed Feb 23, 2024
1 parent 175007a commit 236dfad
Show file tree
Hide file tree
Showing 33 changed files with 173 additions and 153 deletions.
1 change: 0 additions & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

yarn commitlint --edit $1
1 change: 0 additions & 1 deletion .husky/post-checkout
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

if [ -n "$(git diff HEAD@{1}..HEAD@{0} -- yarn.lock)" ]; then
yarn install --immutable || true
Expand Down
1 change: 0 additions & 1 deletion .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

if [ -n "$(git diff HEAD@{1}..HEAD@{0} -- yarn.lock)" ]; then
yarn install --immutable || true
Expand Down
1 change: 0 additions & 1 deletion .husky/post-rewrite
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

if [ -n "$(git diff HEAD@{1}..HEAD@{0} -- yarn.lock)" ]; then
yarn install --immutable || true
Expand Down
1 change: 0 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

yarn pob-root-lint-staged
1 change: 0 additions & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

# z40 is the value matching the empty blob/commit/tree SHA (zero x 40)
z40=0000000000000000000000000000000000000000
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
"devDependencies": {
"@babel/core": "7.23.9",
"@pob/commitlint-config": "6.3.1",
"@pob/eslint-config": "53.0.0",
"@pob/eslint-config-typescript": "53.1.0",
"@pob/eslint-config": "54.0.0",
"@pob/eslint-config-typescript": "54.0.0",
"@pob/root": "9.2.0",
"@types/jest": "29.5.12",
"@types/node": "20.11.20",
Expand Down
8 changes: 4 additions & 4 deletions packages/nightingale-console-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@
"engines": {
"node": ">=20.9.0"
},
"main": "./build/index-node20.mjs",
"main": "./build/index-node.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./src/index.ts",
"node": {
"import": "./build/index-node20.mjs"
"import": "./build/index-node.mjs"
}
},
"./children": {
"types": "./src/children.ts",
"node": {
"import": "./build/children-node20.mjs"
"import": "./build/children-node.mjs"
}
},
"./sentry": {
"types": "./src/sentry.ts",
"node": {
"import": "./build/sentry-node20.mjs"
"import": "./build/sentry-node.mjs"
}
}
},
Expand Down
12 changes: 6 additions & 6 deletions packages/nightingale-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,37 +19,37 @@
"./configure": {
"types": "./src/configure.ts",
"node": {
"import": "./build/configure-node20.mjs"
"import": "./build/configure-node.mjs"
}
},
"./console": {
"types": "./src/console.ts",
"node": {
"import": "./build/console-node20.mjs"
"import": "./build/console-node.mjs"
}
},
"./debug": {
"types": "./src/debug.ts",
"node": {
"import": "./build/debug-node20.mjs"
"import": "./build/debug-node.mjs"
}
},
"./errors": {
"types": "./src/errors.ts",
"node": {
"import": "./build/errors-node20.mjs"
"import": "./build/errors-node.mjs"
}
},
"./jsonConsole": {
"types": "./src/jsonConsole.ts",
"node": {
"import": "./build/jsonConsole-node20.mjs"
"import": "./build/jsonConsole-node.mjs"
}
},
"./slack": {
"types": "./src/slack.ts",
"node": {
"import": "./build/slack-node20.mjs"
"import": "./build/slack-node.mjs"
}
}
},
Expand Down
Loading

0 comments on commit 236dfad

Please sign in to comment.