Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
benallfree committed Nov 2, 2023
1 parent f86c213 commit d81e6f2
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 288 deletions.
2 changes: 0 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ module.exports = {
preset: 'ts-jest',
collectCoverageFrom: [
'src/**/*.ts',
'!src/vendor-typings/**'
],
testResultsProcessor: './node_modules/jest-junit-reporter',
testEnvironment: 'node',
testPathIgnorePatterns: [
'/build',
'/node_modules/',
'/vendor-typings'
],
coverageThreshold: {
global: {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"import": "./build/index.mjs"
},
"scripts": {
"build": "npm run build:clean && npm run compile && cp -R src/index.mjs src/vendor-typings build",
"build": "npm run build:clean && npm run compile && cp -R src/index.mjs build",
"build:docs": "typedoc --options typedoc.js --plugin typedoc-plugin-markdown src/ --out docs",
"build:clean": "rm -rf build/*",
"build:clean": "rm -rf 'build/*'",
"compile": "tsc",
"debug": "ts-node-dev --inspect -- src/index.ts",
"debug:break": "ts-node-dev --inspect-brk -- src/index.ts",
Expand Down
2 changes: 0 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference types="./vendor-typings/sqlite3" />

import * as sqlite3 from 'sqlite3'
import { Statement } from './Statement'
import { Database } from './Database'
Expand Down
2 changes: 0 additions & 2 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference types="./vendor-typings/sqlite3" />

import * as sqlite3 from 'sqlite3'
import { Statement } from './Statement'

Expand Down
280 changes: 0 additions & 280 deletions src/vendor-typings/sqlite3/index.d.ts

This file was deleted.

0 comments on commit d81e6f2

Please sign in to comment.