chrome-devtools-frontend 1.0.963960 → 1.0.964440
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/workflows.md +7 -0
- package/front_end/models/javascript_metadata/NativeFunctions.js +7480 -4147
- package/front_end/models/workspace/UISourceCode.ts +4 -5
- package/front_end/ui/legacy/components/inline_editor/cssLength.css +1 -0
- package/front_end/ui/legacy/themeColors.css +1 -1
- package/package.json +1 -1
- package/scripts/build/devtools_plugin.js +103 -0
- package/scripts/build/ninja/{rollup.gni → bundle.gni} +2 -2
- package/scripts/build/ninja/devtools_entrypoint.gni +8 -8
- package/scripts/build/rollup.config.js +3 -93
- package/scripts/javascript_natives/helpers.js +211 -0
- package/scripts/javascript_natives/index.js +57 -194
- package/scripts/javascript_natives/package.json +8 -3
- package/scripts/javascript_natives/test.d.ts +9 -0
- package/scripts/javascript_natives/tests.js +195 -0
package/docs/workflows.md
CHANGED
@@ -32,6 +32,13 @@ autoninja -C out/Default
|
|
32
32
|
|
33
33
|
The resulting build artifacts can be found in `out/Default/gen/front_end`.
|
34
34
|
|
35
|
+
If you want to have faster build by disabling typecheck, consider to use
|
36
|
+
`devtools_skip_typecheck=true` build args like:
|
37
|
+
|
38
|
+
```bash
|
39
|
+
gn gen out/fast-build --args='devtools_skip_typecheck=true'
|
40
|
+
```
|
41
|
+
|
35
42
|
#### Update to latest
|
36
43
|
|
37
44
|
To update to latest tip of tree version:
|