Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and daKmoR committed Aug 23, 2022
1 parent e53e0eb commit 0ca2bc6
Show file tree
Hide file tree
Showing 11 changed files with 63 additions and 60 deletions.
15 changes: 0 additions & 15 deletions .changeset/bright-emus-design.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/fluffy-impalas-mix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-elephants-begin.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/silent-seals-begin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-hounds-rush.md

This file was deleted.

19 changes: 19 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @rocket/cli

## 0.20.3

### Patch Changes

- a48dcd8: Introducing `rocket lint` to verify if all your links are correct.

There are two modes:

```bash
# check existing production build in _site (need to execute "rocket build" before)
rocket lint

# run a fast html only build and then check it
rocket lint --build-html
```

- Updated dependencies [0ed3d6d]
- @rocket/engine@0.2.7

## 0.20.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rocket/cli",
"version": "0.20.2",
"version": "0.20.3",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -53,7 +53,7 @@
],
"dependencies": {
"@rocket/building-rollup": "^0.4.0",
"@rocket/engine": "^0.2.6",
"@rocket/engine": "^0.2.7",
"check-html-links": "^0.2.3",
"colorette": "^2.0.16",
"commander": "^9.0.0",
Expand Down
17 changes: 17 additions & 0 deletions packages/engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @rocket/engine

## 0.2.7

### Patch Changes

- 0ed3d6d: Adjust urls containing url fragments

```html
<!-- user writes -->
<a href="./about.rocket.js#some-id"></a>

<!-- rocket outputs -->
<!-- before -->
<a href="./about.rocket.js#some-id"></a>
<!-- after -->
<a href="/about/#some-id"></a>
```

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rocket/engine",
"version": "0.2.6",
"version": "0.2.7",
"publishConfig": {
"access": "public"
},
Expand Down
21 changes: 21 additions & 0 deletions packages/launch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @rocket/launch

## 0.21.2

### Patch Changes

- 87c10ec: Work without JavaScript if Declarative Shadow Dom (DSD) is supported by browser
- d7e461c: Replace Layout Options `logoSrc` and `logoAlt` strings with a `logoSmall` TemplateResult

```diff
- logoSrc: '/icon.svg',
- logoAlt: 'Rocket Logo',
+ logoSmall: html`
+ <img src="resolve:@rocket/launch/assets/rocket-logo-light.svg" alt="Rocket" width="250" height="67.87" />
+ `,
```

- a12adf2: Add padding above slogan an home page
- Updated dependencies [a48dcd8]
- Updated dependencies [0ed3d6d]
- @rocket/cli@0.20.3
- @rocket/engine@0.2.7

## 0.21.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/launch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rocket/launch",
"version": "0.21.1",
"version": "0.21.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -46,9 +46,9 @@
"preset"
],
"dependencies": {
"@rocket/cli": "^0.20.1",
"@rocket/cli": "^0.20.3",
"@rocket/components": "^0.2.0",
"@rocket/engine": "^0.2.6",
"@rocket/engine": "^0.2.7",
"@webcomponents/template-shadowroot": "^0.1.0",
"lit": "^2.3.0",
"workbox-window": "^6.1.5"
Expand Down

0 comments on commit 0ca2bc6

Please sign in to comment.