Skip to content

Commit 80659fa

Browse files
committedApr 12, 2024··
feat: simple esbuild bundler

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1480
-38
lines changed
 

‎.yo-rc.json

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"@pob/check-lib-dependency-in-root-dev-dependencies",
1212
"@pob/codemods",
1313
"@pob/commitlint-config",
14+
"@pob/esbuild",
1415
"@pob/rollup",
1516
"@pob/sort-object",
1617
"babel-plugin-fix-class-properties-uninitialized",
@@ -21,6 +22,7 @@
2122
"@pob/sort-eslint-config",
2223
"@pob/sort-pkg",
2324
"babel-preset-pob-env",
25+
"example-typescript-lib-esbuild",
2426
"@pob/pretty-eslint-config",
2527
"@pob/pretty-pkg",
2628
"example-typescript-lib-with-rollup-typescript",

‎@pob/esbuild/.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# http://editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
indent_style = space
9+
indent_size = 2
10+
end_of_line = lf
11+
charset = utf-8
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true

0 commit comments

Comments
 (0)
Please sign in to comment.