Skip to content

Commit

Permalink
chore(deps): update dependency tsbb to v4 #73
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Apr 7, 2023
1 parent 02ecf6c commit 36c14dd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"css:build": "compile-less -d src -o esm",
"css:watch": "compile-less -d src -o esm --watch",
"css:build:dist": "compile-less -d src --combine dist.css --rm-global",
"watch": "tsbb watch & npm run css:watch",
"build": "tsbb build && npm run css:build && npm run css:build:dist",
"watch": "tsbb watch src/*.tsx --use-babel & npm run css:watch",
"build": "tsbb build src/*.tsx --use-babel && npm run css:build && npm run css:build:dist",
"map": "source-map-explorer build/static/js/*.js --html build/website-result.html"
},
"repository": {
Expand Down Expand Up @@ -51,8 +51,8 @@
"markdown-react-code-preview-loader": "^2.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-explorer": "^2.5.2",
"tsbb": "^3.7.6"
"source-map-explorer": "^2.5.3",
"tsbb": "^4.1.4"
},
"eslintConfig": {
"extends": [
Expand Down
1 change: 0 additions & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"include": ["../src"],
"compilerOptions": {
"baseUrl": ".",
"outDir": "../cjs",
"emitDeclarationOnly": true,
"noEmit": false
}
Expand Down
8 changes: 3 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@
"declaration": true,
"baseUrl": "website",
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true,
"noEmit": true
"outDir": "./cjs",
"noFallthroughCasesInSwitch": true
},
"include": [
"website",
"src",
".kktrc.ts"
"src"
]
}
9 changes: 9 additions & 0 deletions website/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "../tsconfig",
"include": ["../src", "./"],
"compilerOptions": {
"baseUrl": ".",
"emitDeclarationOnly": true,
"noEmit": false
}
}

0 comments on commit 36c14dd

Please sign in to comment.