Skip to content

Commit 83f1d1f

Browse files
committedApr 3, 2023
chore(deps): update dependency tsbb to v4 #481
1 parent ff629d7 commit 83f1d1f

File tree

37 files changed

+72
-71
lines changed

37 files changed

+72
-71
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
build
22
dist
3+
lib
34
cjs
45
esm
56
node_modules

‎core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"bundle": "ncc build src/index.tsx --target web --filename mdeditor && npm run bundle:min",
1212
"bundle:watch": "ncc watch src/index.tsx --target web --filename mdeditor",
1313
"bundle:min": "ncc build src/index.tsx --target web --filename mdeditor --minify",
14-
"watch": "tsbb watch",
15-
"build": "tsbb build",
14+
"watch": "tsbb watch src/*.tsx --use-babel",
15+
"build": "tsbb build src/*.tsx --use-babel",
1616
"test": "tsbb test --env=jsdom",
1717
"coverage": "tsbb test --env=jsdom --coverage --bail"
1818
},

‎extensions/basic-setup/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎extensions/classname/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎extensions/color/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎extensions/events/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎extensions/hyper-link/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎extensions/langs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎extensions/line-numbers-relative/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎extensions/mentions/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎extensions/zebra-stripes/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
"lint-staged": "~13.2.0",
3434
"prettier": "~2.8.0",
3535
"react-test-renderer": "~18.2.0",
36-
"tsbb": "~3.7.0"
36+
"tsbb": "^4.1.1"
3737
}
3838
}

‎themes/abcdef/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/all/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/androidstudio/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/atomone/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/aura/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/bbedit/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/bespin/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/darcula/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/dracula/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/duotone/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/eclipse/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/github/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/gruvbox/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/material/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/noctis-lilac/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/nord/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/okaidia/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/solarized/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/sublime/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/theme/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.tsx --use-babel",
12+
"build": "tsbb build src/*.tsx --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/tokyo-night-day/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/tokyo-night-storm/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/tokyo-night/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/vscode/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

‎themes/xcode/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"main": "./cjs/index.js",
99
"module": "./esm/index.js",
1010
"scripts": {
11-
"watch": "tsbb watch",
12-
"build": "tsbb build"
11+
"watch": "tsbb watch src/*.ts --use-babel",
12+
"build": "tsbb build src/*.ts --use-babel"
1313
},
1414
"repository": {
1515
"type": "git",

1 commit comments

Comments
 (1)

jaywcjlove commented on Apr 3, 2023

@jaywcjlove
MemberAuthor
Please sign in to comment.