Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gajus/slonik
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v34.2.1
Choose a base ref
...
head repository: gajus/slonik
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v34.2.2
Choose a head ref
  • 7 commits
  • 13 files changed
  • 1 contributor

Commits on Sep 26, 2023

  1. chore: update husky

    gajus committed Sep 26, 2023
    Copy the full SHA
    1f46270 View commit details
  2. chore: remove .ncurc.js

    gajus committed Sep 26, 2023
    Copy the full SHA
    673e2e6 View commit details
  3. Copy the full SHA
    4f7645f View commit details
  4. chore: add knip

    gajus committed Sep 26, 2023
    Copy the full SHA
    376e844 View commit details
  5. chore: remove coveralls

    gajus committed Sep 26, 2023
    Copy the full SHA
    a1f9c8b View commit details
  6. chore: remove concat-stream

    gajus committed Sep 26, 2023
    Copy the full SHA
    43f41d0 View commit details
  7. fix: remove unused exports

    gajus committed Sep 26, 2023
    Copy the full SHA
    c154dc8 View commit details
Showing with 902 additions and 295 deletions.
  1. +0 −1 .README/README.md
  2. +1 −1 .gitignore
  3. +4 −0 .husky/pre-commit
  4. +4 −0 .husky/pre-push
  5. +0 −3 .ncurc.js
  6. +0 −1 README.md
  7. +6 −0 knip.json
  8. +863 −252 package-lock.json
  9. +6 −11 package.json
  10. +3 −0 src/QueryStream.ts
  11. +1 −1 src/errors.ts
  12. +14 −18 src/types.ts
  13. +0 −7 src/utilities/sanitizeObject.ts
1 change: 0 additions & 1 deletion .README/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Slonik

[![Travis build status](http://img.shields.io/travis/gajus/slonik/master.svg?style=flat-square)](https://travis-ci.com/github/gajus/slonik)
[![Coveralls](https://img.shields.io/coveralls/gajus/slonik.svg?style=flat-square)](https://coveralls.io/github/gajus/slonik)
[![NPM version](http://img.shields.io/npm/v/slonik.svg?style=flat-square)](https://www.npmjs.org/package/slonik)
[![Canonical Code Style](https://img.shields.io/badge/code%20style-canonical-blue.svg?style=flat-square)](https://github.com/gajus/canonical)
[![Twitter Follow](https://img.shields.io/twitter/follow/kuizinas.svg?style=social&label=Follow)](https://twitter.com/kuizinas)
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -6,6 +6,6 @@ node_modules
!.eslintrc
!.github
!.gitignore
!.ncurc.js
!.husky
!.README
!.releaserc
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint && npm run test && npm run build
4 changes: 4 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

gitdown ./.README/README.md --output-file ./README.md --check
3 changes: 0 additions & 3 deletions .ncurc.js

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -3,7 +3,6 @@
# Slonik

[![Travis build status](http://img.shields.io/travis/gajus/slonik/master.svg?style=flat-square)](https://travis-ci.com/github/gajus/slonik)
[![Coveralls](https://img.shields.io/coveralls/gajus/slonik.svg?style=flat-square)](https://coveralls.io/github/gajus/slonik)
[![NPM version](http://img.shields.io/npm/v/slonik.svg?style=flat-square)](https://www.npmjs.org/package/slonik)
[![Canonical Code Style](https://img.shields.io/badge/code%20style-canonical-blue.svg?style=flat-square)](https://github.com/gajus/canonical)
[![Twitter Follow](https://img.shields.io/twitter/follow/kuizinas.svg?style=social&label=Follow)](https://twitter.com/kuizinas)
6 changes: 6 additions & 0 deletions knip.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://unpkg.com/knip@2/schema.json",
"entry": ["src/index.ts"],
"ignoreDependencies": ["husky", "ts-node"],
"project": ["src/**/*.ts"]
}
Loading