Commit Graph

63 Commits

Author SHA1 Message Date
Vova Kulikov
a61c881e47
[React]: Add initial usage of the new web worker-based cody web chat (#62792)
Part of https://github.com/sourcegraph/sourcegraph/issues/62448
Linear issue
[SRCH-573](https://linear.app/sourcegraph/issue/SRCH-573/integrate-cody-web-package-into-the-sourcegraph-ui)

This is highly experimental usage of the new (not currently merged but
published in NPM `cody-web-experimental`) package

## How to run it 
- (Optional) if you previously linked any local packages make sure they
don't exist in your node_modules anymore, `rm -rf node_modules` in the
root then `pnpm install`
- Run standard `sg start web-standalone`
- Turn on `newCodyWeb: true` in your `experimentalFeatures`

## How to run it locally with prototype PR in Cody repository 

- Open Cody repository on the `vk/integrate-cody-web-chat-2` branch 
- At the root of the repo, run `pnpm install` to make sure you're up to
date with all of the dependencies.
- Go to the web package (`cd web`)
- Build it with `pnpm build`
- Create a global link with `pnpm link --global` (Ignore the warning
message about no binary)
- Open sourcegraph/sourcegraph repository on this PR branch
- Make sure you are in the root of the repo.
- Run `pnpm link --global cody-web-experimental`
- Run `sg start web-standalone` to bundle the web app and launch an
instance that uses S2 for the backend. You'll need to create a login on
S2 that is not federated by GitHub.
- Turn on `newCodyWeb: true` in your `experimentalFeatures`
- Have fun experimenting!

## Test plan
- Check that old version of Cody has got no regressions
2024-06-26 12:13:29 -03:00
Felix Kling
c529631483
web: Update rxjs to v7 (#61122)
A side goal for the web rewrite is to leave the existing code base in a better state than before. I recently [added a hacky workaround](da5ddc99b6/client/web-sveltekit/vite.config.ts (L82-L101)) to make the Svelte version work properly with different rxjs versions. But the whole point of the rewrite is to not have to do these things anymore. So this is my attempt of upgrading rsjx in the main repo to v7.

I worked through the list of breaking changes in the [rxjs documentation](https://rxjs.dev/deprecations/breaking-changes) and fixed TypeScript issues to the best of my abilities.

Most notable changes:

- The custom `combineLatestOrDefault` operator was rewritten to avoid using rxjs internals, and the `.lift` method (side note: the corresponding tests do not cover all expected behavior, but issues had been caught through other tests)
- Where necessary `.toPromise()` was replaced with `lastValueFrom` or `firstValueFrom`. My assumption was that since we don't get runtime errors for the existing code, it's save to assume that the corresponding observables emit at least one value, i.e. `.toPromise()` did not return `undefined`. Only in some places I added a default value where it was easy to deduce what it should be.
- The generic type in `of()` was removed
- The generic type in `concat()` was removed
- `Subject.next` seemed to have allowed `undefined` to be passed even if the subject's types didn't allow that. If the subject's type couldn't be extended to include `undefined` I changed the code to not pass `undefined`.
- The generic type signature of `defaultIfEmpty` changed.
- Where possible I replaced `Subscribable` with `ObservableInput`, but we also have a copy of the old `Subscribable` interface in the `sourcegraph` package, and that makes things more complicated.
- I simplified unnecessary Promise/Observable interop where necessary.

A lot of the complex rxjs logic and usage of changed interfaces, such as `Subscribable`, is in extensions related code, which is not used in the web app anymore, but is still at least imported in the browser extensions code. Most of it is probably not used anymore, which makes the migration somewhat simpler.
2024-03-18 14:02:57 +01:00
James McNamara
dc485779dc
Removed unused bazel macro arg (#60996)
removed unused bazel macro arg
2024-03-11 06:36:15 -07:00
Felix Kling
a27be83d72
web: Fix settings editor completion/validation (#60808)
Fixes #60492

Completions and validation are not working in the settings editor. This is a huge problem because it (a) makes settings much more difficult to use (users don't know which settings exists or what they do) and (b) can lead to invalid settings configurations.

Co-authored-by: jamesmcnamara <james.mcnamara@sourcegraph.com>
2024-03-11 13:48:31 +01:00
Vova Kulikov
0f8b28b5b9
Revert "use vite for web builds (#58228)" (#59132)
This reverts commit 86180de04a.
2023-12-20 16:23:45 -03:00
Quinn Slack
86180de04a
use vite for web builds (#58228)
* remove little-used `web-standalone-http-prod`

This let you run a local web app built in production mode against a remote Sourcegraph endpoint. You can still run a local web app built in *dev* mode.

* add `sg test bazel-backend-integration`

* fix DeveloperDialog positioning

It was taking up 100% width and was translated -50% so the left half of it was off-viewport.

* use vite for web builds

[Vite](https://vitejs.dev/) is a fast web bundler. With Vite, a local dev server is available as fast as with esbuild, and incremental builds are (1) hot (no page reload needed) and (2) much faster (<500ms).

* fix "manifestPlugin.d.ts" was not created

* sg lint

* remove little-used `web-standalone-http-prod`

This let you run a local web app built in production mode against a remote Sourcegraph endpoint. You can still run a local web app built in *dev* mode.

* add `sg test bazel-backend-integration`

* fix DeveloperDialog positioning

It was taking up 100% width and was translated -50% so the left half of it was off-viewport.

* use vite for web builds

[Vite](https://vitejs.dev/) is a fast web bundler. With Vite, a local dev server is available as fast as with esbuild, and incremental builds are (1) hot (no page reload needed) and (2) much faster (<500ms).

* fix "manifestPlugin.d.ts" was not created

* sg lint

* small lint fix

* added events shim to client/web/BUILD.bazel

* updated via bazel configure

* added in side-effectful import for EventEmitter

* added in side-effectful import for EventEmitter

* ran bazel configure

* re-run bazel configure

* pnpm dedupe

---------

Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com>
Co-authored-by: jamesmcnamara <jamesscottmcnamara@gmail.com>
Co-authored-by: Jean-Hadrien Chabran <jh@chabran.fr>
2023-12-19 19:16:51 -08:00
Quinn Slack
4002774429
reapply "switch from jest to vitest for faster, simpler tests (#57886)" (#58145)
* reapply "switch from jest to vitest for faster, simpler tests (https://github.com/sourcegraph/sourcegraph/pull/57886)"

This was reverted in https://github.com/sourcegraph/sourcegraph/pull/58116 due to an issue with the browser tests.

* include fetch-mock

* fix flakiness

* rm mock that did not work in experimentalVmThreads

* fix

* timeout

* fixup

---------

Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com>
2023-11-07 12:00:18 +02:00
William Bezuidenhout
7f4bebe29d
Revert: bazel+vitest - when running vitests concurrently the target //client/browser:test fails (#58116)
When running vitests concurrently the target //client/browser:test fails

Revert "switch from jest to vitest for faster, simpler tests (#57886)"

This reverts commit ae5325e432.
2023-11-06 14:02:35 +02:00
Quinn Slack
ae5325e432
switch from jest to vitest for faster, simpler tests (#57886)
Replaces our usage of jest with vitest. Also removes the babel transpiler. This simplifies our test configuration by a lot, makes tests run 10% faster, and makes further modernizations to our build/test stuff possible (such as using vite for frontend builds).

This removes some of the junit exporting for Buildkite, and the vitest bazel defs don't really cleanly implement bazel testing guidelines (like sharding). But vitest is only used for unit tests (all integration/e2e/regression tests have always run in mocha), so none of them are very slow anyway.

## Codemods for vitest imports

fastmod -e js,ts,tsx @jest/globals vitest client/ dev/release/
fastmod -e js,ts,tsx 'jest\.(\w+)\(' 'vi.$1(' client/ dev/release/
fastmod -e js,ts,tsx 'jest,' 'vi,' client/ dev/release/
fastmod -e js,ts,tsx 'jest }' 'vi }' client/ dev/release/
git diff --diff-filter=M --name-only | xargs pnpm exec prettier --write
2023-11-05 21:57:04 -10:00
Quinn Slack
5cd8bf53a6
use swc instead of babel for faster bazel typescript transpilation (#57912)
swc is a very fast TypeScript transpiler.

Instead of using Babel for TypeScript transpilation in Bazel, we now use swc, which is much faster. We still use Babel in Jest (for tests), but in the future we intend to move away from Jest.

See https://docs.aspect.build/rulesets/aspect_rules_ts/docs/transpiler#swc-recommended for more information about using swc in Bazel, and https://swc.rs/ for general information about swc.
2023-11-02 22:49:03 -07:00
Quinn Slack
27e796e64d
upgrade nodejs to 20.8 (#57910)
Going from version 18 to 20 means we get better perf and the built-in WebCrypto API, which makes a crypto test polyfill no longer needed.
2023-10-26 22:25:24 -07:00
Joe Chen
8d00772060
chore: delete client/build-config/OWNERS (#57938) 2023-10-26 17:30:35 -07:00
Quinn Slack
6bdcd5e59c
simplify tsconfig.json files (#57913) 2023-10-26 03:03:11 -07:00
Quinn Slack
85818110a7
misc improvements to tests to prep for vitest switch (#57904)
* stub method to avoid unhandled exception in test from pretendRemote

* less flaky ActionItem test that checks condition before snapshotting

* rename *.{spec => test}.ts

This simplifies the test filename pattern.

* rename top-level tsconfig.all.json to tsconfig.json

* upgrade to pnpm 8.9.2

* avoid usage of jsdom.reconfigure

* more robust linkClickHandler.test.tsx

* make getBundleSizeStats.test.ts not need to use mocks

* extract createBarrier() to @sourcegraph/testing

* more robust fromObservableQuery.test.ts

* avoid jsdom.reconfigure

* do not attempt to request assets from assets.gitlab-static.net

fastmod -F assets.gitlab-static.net example.com client/browser/src/

* avoid "incorrect casing" for mocked React components

* use createBarrier

* fix SurveyToast mock GraphQL query

* fix classNames typo
2023-10-26 01:47:40 +00:00
Quinn Slack
07f29c98d6
use @typescript-eslint projectService for faster eslint (#57851)
See https://github.com/typescript-eslint/typescript-eslint/pull/6754.

Also removes needless `.eslintrc.js` files (now that we can use the root `tsconfig.all.json` for linting and it's still fast enough).

Some of our eslint rules were unintentionally made ineffective in `client/web`, and this commit also re-enables them and in some cases suppresses the eslint warning where a fix is not urgent.
2023-10-24 01:40:40 +00:00
Quinn Slack
c0442a2e9f
disable slow eslint rules, remove unused disable directives (#57788)
* disable slow eslint rules, remove unused disable directives

Disabling these eslint rules makes saving significantly faster. These rules are not worthless, but they are usually ignored anyway, and I can't recall a specific instance when they would have caught a bug. I am proposing we disable them and then set a checkpoint in 14 days to rerun eslint with the rules enabled and see if they would have caught any bad practices. In the meantime, we will all benefit from instant saves (with eslint fixes) instead of waiting 3-5 seconds or more after each save in VS Code, which is destructive to productivity.

* upgrade eslint
2023-10-23 13:23:44 -07:00
Quinn Slack
de613e92b6
use esbuild for client/web builds (#57365)
Use [esbuild](https://esbuild.github.io/) instead of Webpack for builds of `client/web`, for faster builds (dev and prod) and greater dev-prod parity. This PR completely removes all use of Webpack in this repository.

`client/web` is the last build target that still uses Webpack; all others have been recently migrated to esbuild. Most devs here have been using esbuild for local dev of `client/web` for the last 6-12 months anyway. The change here is that now our production builds will be built by esbuild.

All sg commands, integration/e2e tests, etc., continue to work as-is. The bundlesize report will take a while to stabilize because the new build products use different filenames.

## Benchmarks

Running `pnpm run generate && time pnpm -C client/web run task:gulp webBuild` and taking the `time` output from the last command:

- Webpack: 62.5s
- esbuild: 6.7s

Note: This understates esbuild's victory for 2 reasons: (1) because esbuild is building both the main and embed entrypoints, whereas Webpack only builds the main entrypoint in this benchmark) and (2) because a lot of it is in the fixed startup time of `gulp`; esbuild incremental rebuilds during local dev only take ~1s.

## Notes

We no longer use Babel to produce web builds (we use esbuild), so we don't need any Babel plugins that optimize the output or improve browser compatibility. Right now, Babel is only used by Jest (for tests) and by Bazel as an intermediate step.
2023-10-23 10:59:06 -07:00
Quinn Slack
fb3c9c6015
use esbuild for browser extension builds (#57231)
* move bext-only extension host worker to client/browser

* use esbuild for browser extension build

esbuild is much faster and simpler than Webpack.
2023-10-08 14:18:52 +09:00
Quinn Slack
c915ee79bd
remove unused/unneeded esbuild plugins (#57408)
* rm unused htmlIndexPlugin

* remove esbuild experimentalNotice plugin
2023-10-06 07:55:29 +00:00
Stefan Hengl
3193c373a8
Revert "name client/web entrypoint bundles after their entrypoint, no… (#57376)
This reverts commit 3a9aff1.

Reverting because locally Sourcegraph wasn't reachable anymore.
2023-10-05 12:08:09 +00:00
Quinn Slack
3a9aff1472
name client/web entrypoint bundles after their entrypoint, not a custom name (#57292)
This removes another source of "names" and also makes it so that client/web can be built by esbuild via Bazel in the future (which does not support renaming entrypoints).
2023-10-05 06:29:34 +00:00
Quinn Slack
cbac3c6390
remove more ENTERPRISE=1 remnants (#57232)
There are still many places that build the old non-enterprise bundle. This is no longer needed or maintained. This change simplifies our builds by removing that unnecessary target. There are still some remnants (such as `ui/assets/{enterprise,oss}`); not *all* are removed here.
2023-10-02 10:43:11 -07:00
Felix Kling
7363557f41
Eslint fix type imports (#54920)
This PR adds the eslint rules @typescript-eslint/consistent-type-imports and @typescript-eslint/no-import-type-side-effects. Having type imports be explicitly declared as such makes it easier for modern bundlers to strip those imports which is useful if e.g. a module is sent directly to the browser.

I added both rules as a warning because @typescript-eslint/consistent-type-exports is also a warning.
2023-08-10 21:12:31 +02:00
Greg Magolan
b398952eca
Revert "revert "bazel: improve ESLint rule" (#52853)" (#52878)
- Revert "revert "bazel: improve ESLint rule" (#52853)"
- bazel: fix eslint custom rule so js_binary runfiles are included as
tool inputs to ctx.actions.run_shell

## Test plan

Tested locally that fix commit resolves the
```
FATAL: aspect_rules_js[js_test]: RUNFILES environment variable is not set
```
flaky issue that prompted the revert
2023-06-04 19:06:39 -07:00
Valery Bugakov
e4b4c631cf
revert "bazel: improve ESLint rule" (#52853)
This reverts commit ff3ce9fe93 because of
the flaky errors on `main`. See [this Slack
thread](https://sourcegraph.slack.com/archives/C02FLQDD3TQ/p1685697360822839?thread_ts=1685696480.396849&cid=C02FLQDD3TQ).
2023-06-02 13:29:06 +00:00
Valery Bugakov
ff3ce9fe93
bazel: improve ESLint rule and disable ESLint outside of Bazel (#52667)
- Custom ESLint Bazel rule now relies on `sh_test`. The build part of
the rule produces the output file with ESLint errors, and the `sh_test`
target verifies that it's empty. If it's not empty, the ESLint test
fails, and the report content is printed to stdout.
- Added additional ESLint targets to `*.js` files in the root of each
client package.
- Added additional ESLint targets for `*.story.tsx` files for client
packages with stories. It's temporary until we start building Storybook
story modules with `ts_project`.
- Disabled ESLint outside of Bazel: **10-12m job is gone!** 🎉

## Test plan

bazel test `bazel query 'attr("name", ".*_eslint$", //client/...)'`
2023-06-02 08:37:40 +00:00
William Bezuidenhout
40e3dedd62
app: fix asset resolution for builds outside of bazel (#51549)
We recently changed how assets are resolved in the backend. If the
backend is built with Bazel it just works, as well as when you run in
Dev mode.

But if the backend is built the normal go way, the assets are not where
the backend expects it to be. This fixes the frontend code to resolve
the assets directory depending on the environment
## Test plan
Check assets gets rendered with the following commands
* `sg start`
* `bazel build //enterprise/cmd/sourcegraph:sourcegraph`
* `./enterprise/dev/app/build-release.sh`
<!-- All pull requests REQUIRE a test plan:
https://docs.sourcegraph.com/dev/background-information/testing_principles
-->
2023-05-31 21:59:49 +02:00
Valery Bugakov
760db946dd
bazel: implement custom ESLint Bazel rule (#52062)
- Upgraded `aspect_bazel_lib`, `aspect_rules_js` and `aspect_rules_ts`
to the latest versions.
- Ran [bazel run
//.aspect/bazelrc:update_aspect_bazelrc_presets](40a7422385)
- Added `eslint_config` macro for client package eslint configuration
`js_library` targets.
- Implemented the custom ESLint rule, which copies `srcs` with
dependencies and **declarations** to the Bazel to lint them. This way,
we maintain the ability to do type-aware linting in Bazel.
- Added a custom ESLint formatter used in Bazel to print out relative
paths in ESLint reports.

In the follow-up PR, I will look into improvements suggested by
@alexeagle that should allow us to convert ESLint build targets into
test targets and gracefully manage linting failures.

## Test plan

1. CI
2. `bazel build $(bazel query 'kind("_eslint_test_with_types",
//client/...)')`
2023-05-22 04:05:45 -07:00
Valery Bugakov
3f96298eb4
bazel: test volatile variables with Percy (#51693)
Use volatile status variables provided by stamping to inject relevant
Git information into the Percy execution process. Percy needs Git commit
and branch to create an accurate report and auto-accept changes on main.
See extensive comments in the code for implementation details.

On the high level, instead of running the Percy CLI directly from Bazel,
we wrap it into the JS script that:

1. Reads volatile status variables with Git info.
2. Creates a Percy CLI command with these variables injected.
3. Exectes the command using args received from the Bazel target.

## Test plan

1. CI
2. Locally: `bazel test //client/web/src/integration:integration-tests
--define=E2E_HEADLESS=true
--define=E2E_SOURCEGRAPH_BASE_URL="http://localhost:7080"
--define=GH_TOKEN=fake --define=XXX` — replace `XXX` with the
`PERCY_TOKEN` from our shared 1Password vault.
2023-05-11 09:20:42 +00:00
Valery Bugakov
627f5a6758
bazel: add integration test target (#49279)
Adds client integration tests target, got it running locally and
disabled it for CI until the $DISPLAY issue is resolved.

## Test plan

1. `bazel test //client/web/src/integration:integration-tests`
2. [The CI build with Bazel
checks](https://buildkite.com/sourcegraph/sourcegraph/builds/210860) 
2023-03-30 06:01:09 -07:00
Greg Magolan
7f4e6da8cc
build: still need BAZEL_BINDIR for webpack_bundle custom rule (#48796)
Actually, webpack_bundle doesn't have JS_BINARY__TARGET set since it is
a custom build rule.... To handle all the cases I think we have to check
for both. 😞
2023-03-07 20:02:11 -08:00
Greg Magolan
edf5013405
build: use JS_BINARY__TARGET instead of BAZEL_BINDIR (#48795)
`BAZEL_BINDIR` is set for build targets only while `JS_BINARY__TARGET`
should be set for all js_binary & js_test targets for bazel build, test
& run contexts.
2023-03-07 06:04:50 +00:00
Jason Bedard
a319f78868
bazel: enable ReactRefreshWebpackPlugin and MonacoWebpackPlugin (#48779) 2023-03-06 19:14:14 -08:00
Jason Bedard
c90ca86a67
build: resolve dependencies injected with the webpack.ProviderPlugin (#48671)
The `require.resolve` and `/index.js` are required for the provided
modules to resolve correctly under bazel, the added `dependencies` are
required because in the root they are `devDependencies` but
`build-config` needs them at runtime (note that "runtime" for
`build-config` is when webpack is run on `client/web`).
2023-03-05 21:28:37 -08:00
Valery Bugakov
240377fdb3
web: test web app enteprise build with Bazel (#48407)
Share the way to test the web application enterprise build with Bazel.

## Test plan

1. `bazel build //client/web:bundle-enterprise`
2. To start the node.js server with the Bazel web application build.

`STATIC_ASSETS_PATH=XXX/sourcegraph/bazel-bin/client/web/bundle-enterprise
WEBPACK_SERVE_INDEX=true
SOURCEGRAPH_API_URL=https://sourcegraph.sourcegraph.com pnpm --filter
@sourcegraph/web run serve:prod`
2023-02-28 22:29:50 -08:00
Jason Bedard
10aefc4bb7
bazel: add bazel build,tests for client/* (#46193)
Webpack bundles compile but need further testing. Jest + mocha tests
compile but are marked as `manual` until further work is done to get them
passing. The four jest tests are green and enabled now, though.

## Test plan

`bazel build //client/...` and `bazel test //client/...`
2023-02-28 20:46:03 -08:00
Jason Bedard
3eb718dcd9
build: move build-config specific dependencies to build-config/package.json (#48072)
Other packages within `client/*` depend on `@sourcegraph/build-config`
as a dev dependency, but `@sourcegraph/build-config` itself depends on
these as runtime dependencies. Under bazel this dev vs non-dev is
stricter and `build-config` needs to declare the dependencies correctly.

Some of the deps are still in the root package.json as dev-deps when
they are still used elsewhere, others were removed from the root and are
now only in `build-config`.
2023-02-22 19:25:07 -08:00
Quinn Slack
29567a057b
upgrade esbuild and use tree shaking (#47520)
esbuild is an alternative to Webpack for TypeScript builds in local dev
(https://docs.sourcegraph.com/dev/background-information/web/build#esbuild).

The latest release of esbuild fixes an issue
(https://github.com/evanw/esbuild/issues/1370) that prevented us from
using treeshaking. With esbuild 0.17.7, we can use treeshaking, which
means smaller bundle sizes.




## Test plan

n/a (dev only)

## App preview:

-
[Web](https://sg-web-sqs-upgrade-esbuild-treeshaking.onrender.com/search)

Check out the [client app preview
documentation](https://docs.sourcegraph.com/dev/how-to/client_pr_previews)
to learn more.
2023-02-13 06:45:47 +00:00
Valery Bugakov
ce38bbc724
web: fix pnpm-lock issue (#47478)
Fixes the issue caused by the presence of the `sourcegraph: ''` entry in the `pnpm-lock.yaml`. If we install any new dependency, the `pnpm install` command fails on CI. [Failure example](https://github.com/sourcegraph/sourcegraph/actions/runs/4121774771/jobs/7117792725).
2023-02-09 22:04:31 -08:00
Quinn Slack
316ccbac57
make DEV_WEB_BUILDER_OMIT_SLOW_DEPS work with pnpm (#47067)
The DEV_WEB_BUILDER_OMIT_SLOW_DEPS env var is an experimental dev env var for faster builds that I sometimes use. When using it, the packageResolution plugin needs the same fix as the one for stylePlugin in https://github.com/sourcegraph/sourcegraph/pull/46452 to work with pnpm. This is a generally sensible fix that implements the correct and desirable behavior, not just a way to make a hack work.
2023-01-29 00:40:20 -08:00
Valery Bugakov
8ffcb9be58
web: make esbuild work with pnpm (#46452) 2023-01-15 02:46:03 +00:00
Valery Bugakov
304acdb5da
web: migrate from yarn to pnpm (#46143)
Bazel's rules_js rely on the pnpm package manager. To simplify the integration, we're migrating to pnpm from our current package manager — yarn. Another reason to migrate is that pnpm is cool and fast. 😉
2023-01-11 19:50:09 -08:00
Quinn Slack
115f7bd719
DEV_WEB_BUILDER_OMIT_SLOW_DEPS env var to speed up esbuild rebuild by ~40% (#46054)
With the env var `DEV_WEB_BUILDER_OMIT_SLOW_DEPS` set (such as in `sg.config.overwrite.yaml`), esbuild rebuilds are ~40% faster. If you try to access pages that require these deps, you'll see a placeholder. This env var only takes effect when using esbuild (https://docs.sourcegraph.com/dev/background-information/web/build#esbuild), not Webpack.
2023-01-02 16:25:36 -10:00
Valery Bugakov
53a2ba40f4
fix: remove circular references in build-config package (#45057) 2022-12-02 12:09:26 +00:00
David Veszelovszki
acd5c65c75
Restrict imports from any out/ directories (#41515)
* Restrict imports from any `out/` directories
2022-10-17 11:09:33 +02:00
Noah S-C
152351f55a
codeintel: add UI for setting auto-indexing inference script (#41517)
Co-authored-by: Eric Fritz <eric@eric-fritz.com>
2022-10-10 14:21:27 +00:00
GitStart-SourceGraph
51befbfa52
[SG-39797] Enable no-console ESLint rule (#40458) 2022-10-03 07:19:17 -07:00
Valery Bugakov
51b5550de3
web: add Analyzing the Bundlesize check failure docs (#41164) 2022-09-01 04:47:57 -07:00
GitStart-SourceGraph
b283d24198
[SG-39284] Upgrade yarn to the latest version (#39728) 2022-08-31 20:39:53 -07:00
Valery Bugakov
aa3eb7c142
web: named Webpack chunks (#39481) 2022-07-28 20:22:05 -07:00