commit | 99e8ad00012db78e310c086f0cea8d1215844f6a | [log] [tgz] |
---|---|---|
author | Paladox none <thomasmulhall410@yahoo.com> | Tue Feb 27 20:24:22 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Feb 27 20:24:22 2024 +0000 |
tree | 634208e444c72da9e7b16309d8bd6599ad39a845 | |
parent | 662f6cffa24b3d442e5eddf95d3f12154495bf7c [diff] |
Update git submodules * Update plugins/delete-project from branch 'stable-3.7' to 8f6ea7eeb22f8b8487d3b433d367272172ea32d1 - Add support for newer plugin-node-resolve versions Due to [0] in plugin-node-resolve, it changes the way modules are resolved. It now looks at package.json and figures it out from there although if the stuff it is looking for is not found it falls back to how it did the resolving in older versions. Unfortunately there is no config to force the behaviour so we have to use the new behaviour. This is what it looks like: ``` "exports": { ".": { "development": "./development/reactive-element.js", "default": "./reactive-element.js" }, .... "./decorators.js": { "development": "./development/decorators.js", "default": "./decorators.js" }, .... }, ``` Thus "./decorators" fails to match "./decorators.js" and so it fails to resolve. [0] https://github.com/rollup/plugins/commit/3d60158f21e0b6a5a8a53d9977928e2e148cb885 Change-Id: I7829591e45662ee6028182beb57396b327823275
Gerrit is a code review and project management tool for Git based projects.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.
For information about how to install and use Gerrit, refer to the documentation.
Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.
Please report bugs on the issue tracker.
Gerrit is the work of hundreds of contributors. We appreciate your help!
Please read the contribution guidelines.
Note that we do not accept Pull Requests via the Github mirror.
The Developer Mailing list is repo-discuss on Google Groups.
Gerrit is provided under the Apache License 2.0.
Install Bazel and run the following:
git clone --recurse-submodules https://gerrit.googlesource.com/gerrit cd gerrit && bazel build release
The instruction how to configure GerritForge/BinTray repositories is here
On Debian/Ubuntu run:
apt-get update && apt-get install gerrit=<version>-<release>
NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.
On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
Docker images of Gerrit are available on DockerHub
To run a CentOS 8 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-centos8
To run a Ubuntu 20.04 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-ubuntu20
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.