Skip to content

Commit

Permalink
feat: update packages and fix issues, new guid package to use latest …
Browse files Browse the repository at this point in the history
…esm nanoid
  • Loading branch information
hperrin committed Nov 16, 2022
1 parent 0c2c2c5 commit fd66aab
Show file tree
Hide file tree
Showing 75 changed files with 6,662 additions and 130,023 deletions.
6 changes: 3 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no-install commitlint --edit
npx --no -- commitlint --edit $1
4 changes: 2 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
11,448 changes: 6,198 additions & 5,250 deletions package-lock.json

Large diffs are not rendered by default.

29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
"version": "1.0.0",
"description": "An ORM for Node.js.",
"scripts": {
"lint:format": "prettier --write .",
"lint:check": "prettier --check .",
"format": "prettier --write .",
"lint": "prettier --check .",
"clean": "lerna run clean",
"docs": "typedoc",
"prepare": "husky install && npm run bootstrap && npm run lint:check",
"prepare": "husky install && npm run bootstrap && npm run lint",
"bootstrap": "lerna bootstrap",
"test": "lerna run test --concurrency=1 --stream --no-prefix --no-bail -- -- --passWithNoTests",
"test": "lerna run test --concurrency=1 --stream --no-prefix --no-bail -- --passWithNoTests",
"test:db:run": "lerna run test:db:run --stream --parallel",
"test:db:stop": "lerna run test:db:stop"
"test:db:stop": "lerna run test:db:stop",
"test:db:clean": "lerna run test:db:clean"
},
"repository": {
"type": "git",
Expand All @@ -29,15 +30,15 @@
},
"homepage": "https://github.com/sciactive/nymphjs#readme",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"prettier-plugin-svelte": "^2.5.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"husky": "^8.0.2",
"lerna": "^6.0.3",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"prettier-plugin-svelte": "^2.8.0",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
Expand Down
2 changes: 1 addition & 1 deletion packages/client-node/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @type {import('@ts-jest/dist/types').InitialOptionsTsJest} */
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
Expand Down
Loading

0 comments on commit fd66aab

Please sign in to comment.