Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf: spec-parser to separate package #10842

Merged
merged 43 commits into from
Feb 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
c96011d
perf: init spec-parser package
KennethBWSong Jan 25, 2024
6a414e3
perf(spec-parser): remove unused package, use correct option (#10776)
SLdragon Jan 29, 2024
63401c9
perf: add test (#10789)
KennethBWSong Jan 30, 2024
81996be
test: add browser test (#10796)
KennethBWSong Jan 31, 2024
1d02365
test: fix coverage = 0 bug (#10802)
KennethBWSong Feb 1, 2024
188bdc0
perf: not allow res/req body has type other than json (#10803)
SLdragon Feb 1, 2024
25a890d
ci: add ci for spec-parser (#10805)
KennethBWSong Feb 1, 2024
a67a8ad
ci: add cd for spec parser (#10816)
KennethBWSong Feb 4, 2024
0953606
ci: fix cd for spec parser (#10819)
KennethBWSong Feb 4, 2024
250c46b
ci: update node version to 18 (#10820)
KennethBWSong Feb 4, 2024
27c5f0e
perf(spec-parser): try to fix browser lib issue (#10821)
SLdragon Feb 4, 2024
72f67c4
ci: update version (#10822)
KennethBWSong Feb 4, 2024
511880c
perf: add format for spec parser (#10827)
KennethBWSong Feb 5, 2024
804e450
perf: export utils in spec parser (#10829)
KennethBWSong Feb 5, 2024
3cfc9bf
perf: add license and update package.json (#10837)
KennethBWSong Feb 6, 2024
50e2d74
perf(spec-parser): add README.md and update export (#10838)
SLdragon Feb 6, 2024
23b3c91
ci: update version (#10839)
KennethBWSong Feb 6, 2024
6a7c0b5
perf: init spec-parser package
KennethBWSong Jan 25, 2024
5761291
perf(spec-parser): remove unused package, use correct option (#10776)
SLdragon Jan 29, 2024
a7fc33a
perf: add test (#10789)
KennethBWSong Jan 30, 2024
81fc76d
test: add browser test (#10796)
KennethBWSong Jan 31, 2024
000c519
test: fix coverage = 0 bug (#10802)
KennethBWSong Feb 1, 2024
11babe8
perf: not allow res/req body has type other than json (#10803)
SLdragon Feb 1, 2024
ba4b61f
ci: add ci for spec-parser (#10805)
KennethBWSong Feb 1, 2024
51b0047
ci: add cd for spec parser (#10816)
KennethBWSong Feb 4, 2024
a89bc9f
ci: fix cd for spec parser (#10819)
KennethBWSong Feb 4, 2024
158a3b0
ci: update node version to 18 (#10820)
KennethBWSong Feb 4, 2024
e2ee2b8
perf(spec-parser): try to fix browser lib issue (#10821)
SLdragon Feb 4, 2024
9ac9b79
ci: update version (#10822)
KennethBWSong Feb 4, 2024
83bbd9e
perf: add format for spec parser (#10827)
KennethBWSong Feb 5, 2024
9a52d1a
perf: export utils in spec parser (#10829)
KennethBWSong Feb 5, 2024
b6fe59e
perf: add license and update package.json (#10837)
KennethBWSong Feb 6, 2024
3ec4651
perf(spec-parser): add README.md and update export (#10838)
SLdragon Feb 6, 2024
5b4c8ce
ci: update version (#10839)
KennethBWSong Feb 6, 2024
fc6d2d3
perf: update
KennethBWSong Feb 6, 2024
1f3a637
fix: fix merge conflict
KennethBWSong Feb 6, 2024
b5a3bb0
docs: update readme
KennethBWSong Feb 6, 2024
03183c0
perf: update package.json
KennethBWSong Feb 6, 2024
9fb6acf
test: fix test
KennethBWSong Feb 6, 2024
05f3794
perf: update pnpm-lock
KennethBWSong Feb 6, 2024
7112ba2
test: fix ut
KennethBWSong Feb 7, 2024
08221df
build: update config in webpack
wenytang-ms Feb 7, 2024
87e221b
fix: fix format
KennethBWSong Feb 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build: update config in webpack
  • Loading branch information
wenytang-ms committed Feb 7, 2024
commit 08221dfed7740c27fc06f6a2b8cc87416d98e8b3
2 changes: 1 addition & 1 deletion packages/spec-parser/config/webpack.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = {
modules: ["node_modules"],
mainFields: ["browser", "module", "main"],
extensions: [".js", ".ts"],
symlinks: false,
symlinks: true,
fallback: {
url: require.resolve("url/"),
http: require.resolve('stream-http'),
Expand Down
Loading