Skip to content

Commit

Permalink
chore(deps): update dependency tsbb to 3.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed May 27, 2023
1 parent 03b4862 commit c91eb9e
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 18 deletions.
4 changes: 2 additions & 2 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
"resolve-package-path": "~4.0.3",
"sass": "^1.45.1",
"semver": "~7.5.0",
"ts-node": "~10.8.0",
"typescript": "~4.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.65.0"
}
}
6 changes: 3 additions & 3 deletions example/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"scripts": {
"start": "kkt start --no-open-browser",
"build": "GENERATE_SOURCEMAP=false kkt build",
"watch": "tsbb watch --no-esm --no-source-maps --entry app/main.ts",
"build:main": "tsbb build --no-esm --no-source-maps --entry app/main.ts",
"watch": "tsbb watch",
"build:main": "tsbb build",
"app": "NODE_ENV=development ELECTRON_DISABLE_SECURITY_WARNINGS=true electron .",
"app:build": "electron ."
},
Expand All @@ -27,7 +27,7 @@
"@types/react-dom": "~18.2.0",
"electron": "~19.1.0",
"kkt": "^7.4.13",
"tsbb": "~3.7.0"
"tsbb": "^4.1.5"
},
"dependencies": {
"react": "~18.2.0",
Expand Down
7 changes: 7 additions & 0 deletions example/electron/src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../tsconfig",
"include": ["../src"],
"compilerOptions": {
"noEmit": false
}
}
10 changes: 4 additions & 6 deletions example/electron/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
{
"compilerOptions": {
"baseUrl": "./src",
"rootDir": ".",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"sourceMap": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"noEmit": true,
"baseUrl": ".",
"jsx": "react-jsx",
"outDir": "lib",
"noFallthroughCasesInSwitch": true,
"types": ["jest", "node"]
},
"include": ["src", "website", ".kktrc.ts"]
"include": ["app"]
}
6 changes: 3 additions & 3 deletions example/react-component-tsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"scripts": {
"doc": "kkt build --app-src ./website",
"start": "kkt start --app-src ./website",
"build": "tsbb build && npm run css:build && npm run css:build:dist",
"watch": "tsbb watch & npm run css:watch",
"build": "tsbb build src/*.{tsx,ts} --use-babel --cjs cjs && npm run css:build && npm run css:build:dist",
"watch": "tsbb watch src/*.{tsx,ts} --use-babel --cjs cjs & npm run css:watch",
"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",
Expand Down Expand Up @@ -62,7 +62,7 @@
"lint-staged": "~13.2.0",
"prettier": "~2.8.0",
"react-test-renderer": "~18.2.0",
"tsbb": "~3.7.0"
"tsbb": "^4.1.5"
},
"eslintConfig": {
"extends": [
Expand Down
2 changes: 1 addition & 1 deletion example/react-component-tsx/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"noEmit": true,
"types": ["jest", "node"]
},
"include": ["src", "website", ".kktrc.ts"]
"include": ["src"]
}
7 changes: 7 additions & 0 deletions example/react-component-tsx/website/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../tsconfig",
"include": ["../website"],
"compilerOptions": {
"noEmit": false
}
}
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
"lib:----->>>": ">>>>>>>>>>>>>>>>>>>>>>>>>>>",
"lib:watch": "lerna exec \"tsbb watch --no-esm\" --scope @kkt/*",
"lib:watch:less": "lerna exec \"tsbb watch --no-esm\" --scope @kkt/less-modules",
"lib:watch:ncc": "lerna exec \"tsbb watch --no-esm\" --scope @kkt/ncc",
"lib:build": "lerna exec \"tsbb build --no-esm\" --scope @kkt/*",
"lib:build:ncc": "lerna exec \"tsbb build --no-esm\" --scope @kkt/ncc",
"lib:build:less": "lerna exec \"tsbb build --no-esm\" --scope @kkt/less-modules",
"lib:<<<-----": "<<<<<<<<<<<<<<<<<<<<<<<<<<<",
"kkt:----->>>": ">>>>>>>>>>>>>>>>>>>>>>>>>>>",
Expand Down Expand Up @@ -53,6 +51,6 @@
"lerna": "~5.6.0",
"lint-staged": "~13.2.0",
"prettier": "~2.8.0",
"tsbb": "^3.7.5"
"tsbb": "^4.1.5"
}
}

0 comments on commit c91eb9e

Please sign in to comment.