Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into no-dupe-keys
Browse files Browse the repository at this point in the history
* upstream/main:
  fix(ci): fix the release workflows for the stable release (rome#3583)
  Fix logo container margin
  Fix mobile docs regressions
  perf: End-to-end Linter and Formatter benchmarks (rome#3570)
  doc: VS Code extension (rome#3579)
  refactor(rome_cli): refactor the threading of parallel traversal to increase occupancy (rome#3577)
  [docs] Add navigation dropdown for docs (rome#3578)
  doc(rome_cli): Document `--files-max-size` option
  perf(rome_js_semantic): Use FX Hash function (rome#3565)
  fix(rome_js_analyzer): `noInvalidConstructorSuper` false positive for class expressions (rome#3561)
  Clean up mobile navigation
  doc(website): Run `cargo lintdoc` (rome#3567)
  doc: Fix install command
  Fix mobile code blocks
  Fix dark mode logo
  Update links
  Implement new website (rome#3556)
  • Loading branch information
jeysal committed Nov 8, 2022
2 parents d4f1dbd + 211540d commit 9faaee0
Show file tree
Hide file tree
Showing 385 changed files with 5,966 additions and 18,852 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/release_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,12 @@ jobs:
run: |
echo "Version change found! New version: ${{ steps.version.outputs.version }} (${{ steps.version.outputs.version_type }})"
echo "version=${{ steps.version.outputs.version }}" >> $GITHUB_ENV
- name: Set version name
if: steps.version.outputs.changed != 'true'
run: |
echo "version=$(node npm/rome/scripts/update-nightly-version.mjs)" >> $GITHUB_ENV
- name: Check prerelease status
id: prerelease
- name: Set prerelease status
if: env.nightly == 'true'
env:
prerelease: true
run: echo "Create pre-release"
run: |
echo "prerelease=true" >> $GITHUB_ENV
echo "version=$(node npm/rome/scripts/update-nightly-version.mjs)" >> $GITHUB_ENV
build:
strategy:
Expand Down Expand Up @@ -201,8 +196,8 @@ jobs:
- name: Generate npm packages
run: node npm/rome/scripts/generate-packages.mjs

- name: Publish npm packages as next
run: for package in npm/*; do if [ $package != "npm/js-api" ]; then npm publish $package --tag next --access public; fi; done
- name: Publish npm packages as latest
run: for package in npm/*; do if [ $package != "npm/js-api" ]; then npm publish $package --tag latest --access public; fi; done
if: needs.build.outputs.prerelease != 'true'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_js_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,12 @@ jobs:
run: node npm/js-api/scripts/update-nightly-version.mjs

- name: Publish npm package as latest
run: npm publish @rometools/js-api --tag latest --access public
run: npm publish npm/js-api --tag latest --access public
if: needs.build.outputs.prerelease != 'true'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish npm package as nightly
run: npm publish @rometools/js-api --tag nightly --access public
run: npm publish npm/js-api --tag nightly --access public
if: needs.build.outputs.prerelease == 'true'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed assets/JPG/logo.jpg
Binary file not shown.
Binary file removed assets/JPG/logo_black.jpg
Binary file not shown.
Binary file removed assets/JPG/logo_yellow.jpg
Binary file not shown.
Binary file removed assets/JPG/logomark.jpg
Binary file not shown.
Binary file removed assets/JPG/logomark_black.jpg
Binary file not shown.
Binary file removed assets/JPG/logomark_yellow.jpg
Binary file not shown.
Binary file removed assets/JPG/patern_black.jpg
Binary file not shown.
Binary file removed assets/JPG/pattern.jpg
Binary file not shown.
Binary file removed assets/JPG/pattern_gray.jpg
Binary file not shown.
438 changes: 0 additions & 438 deletions assets/LICENSE

This file was deleted.

Binary file removed assets/PNG/logo_black_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logo_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logo_transparent_outlined.png
Binary file not shown.
Binary file removed assets/PNG/logo_white_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logo_white_yellow_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logo_yellow_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logomark_black_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logomark_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logomark_transparent_outlined.png
Binary file not shown.
Binary file removed assets/PNG/logomark_white_solid_background.png
Binary file not shown.
Binary file not shown.
Binary file removed assets/PNG/logomark_white_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logomark_white_yellow_transparent.png
Binary file not shown.
Binary file removed assets/PNG/logomark_yellow_transparent.png
Binary file not shown.
Binary file removed assets/PNG/patern_black_transparent.png
Binary file not shown.
Binary file removed assets/PNG/pattern_gray_transparent.png
Binary file not shown.
Binary file removed assets/PNG/pattern_transparent.png
Diff not rendered.
11 changes: 0 additions & 11 deletions assets/README.md

This file was deleted.

1 change: 0 additions & 1 deletion assets/SVG/logo.svg
Diff not rendered.
1 change: 0 additions & 1 deletion assets/SVG/logo_black.svg
Diff not rendered.
1 change: 0 additions & 1 deletion assets/SVG/logo_white.svg
Diff not rendered.
Loading

0 comments on commit 9faaee0

Please sign in to comment.