Skip to content

Commit

Permalink
chore(deps): update dependency tsbb to v4 #22
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Apr 9, 2023
1 parent ca56d6f commit d58a77d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"scripts": {
"prepare": "husky install",
"start": "node lib/index.js",
"watch": "tsbb watch --disable-babel",
"build": "tsbb build --disable-babel",
"watch": "tsbb watch",
"build": "tsbb build",
"test": "tsbb test",
"coverage": "tsbb test --coverage",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\""
Expand All @@ -38,9 +38,9 @@
"*.{js,jsx,tsx,ts,less,md,json}": "prettier --write"
},
"devDependencies": {
"husky": "~8.0.0",
"lint-staged": "~13.2.0",
"prettier": "~2.8.0",
"tsbb": "^3.7.2"
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"tsbb": "^4.1.5"
}
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
"declaration": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"outDir": "lib",
"baseUrl": "."
},
"include": ["src/**/*"]
"include": ["src/**/*"],
"exclude": ["node_modules", "lib"]
}

0 comments on commit d58a77d

Please sign in to comment.