Skip to content

Commit 0ca2bc6

Browse files
github-actions[bot]daKmoR
authored andcommitted
Version Packages
1 parent e53e0eb commit 0ca2bc6

11 files changed

+63
-60
lines changed

.changeset/bright-emus-design.md

-15
This file was deleted.

.changeset/fluffy-impalas-mix.md

-16
This file was deleted.

.changeset/ninety-elephants-begin.md

-5
This file was deleted.

.changeset/silent-seals-begin.md

-13
This file was deleted.

.changeset/violet-hounds-rush.md

-5
This file was deleted.

packages/cli/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @rocket/cli
22

3+
## 0.20.3
4+
5+
### Patch Changes
6+
7+
- a48dcd8: Introducing `rocket lint` to verify if all your links are correct.
8+
9+
There are two modes:
10+
11+
```bash
12+
# check existing production build in _site (need to execute "rocket build" before)
13+
rocket lint
14+
15+
# run a fast html only build and then check it
16+
rocket lint --build-html
17+
```
18+
19+
- Updated dependencies [0ed3d6d]
20+
- @rocket/engine@0.2.7
21+
322
## 0.20.2
423

524
### Patch Changes

packages/cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rocket/cli",
3-
"version": "0.20.2",
3+
"version": "0.20.3",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -53,7 +53,7 @@
5353
],
5454
"dependencies": {
5555
"@rocket/building-rollup": "^0.4.0",
56-
"@rocket/engine": "^0.2.6",
56+
"@rocket/engine": "^0.2.7",
5757
"check-html-links": "^0.2.3",
5858
"colorette": "^2.0.16",
5959
"commander": "^9.0.0",

packages/engine/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @rocket/engine
22

3+
## 0.2.7
4+
5+
### Patch Changes
6+
7+
- 0ed3d6d: Adjust urls containing url fragments
8+
9+
```html
10+
<!-- user writes -->
11+
<a href="./about.rocket.js#some-id"></a>
12+
13+
<!-- rocket outputs -->
14+
<!-- before -->
15+
<a href="./about.rocket.js#some-id"></a>
16+
<!-- after -->
17+
<a href="/about/#some-id"></a>
18+
```
19+
320
## 0.2.6
421

522
### Patch Changes

packages/engine/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rocket/engine",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"publishConfig": {
55
"access": "public"
66
},

packages/launch/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @rocket/launch
22

3+
## 0.21.2
4+
5+
### Patch Changes
6+
7+
- 87c10ec: Work without JavaScript if Declarative Shadow Dom (DSD) is supported by browser
8+
- d7e461c: Replace Layout Options `logoSrc` and `logoAlt` strings with a `logoSmall` TemplateResult
9+
10+
```diff
11+
- logoSrc: '/icon.svg',
12+
- logoAlt: 'Rocket Logo',
13+
+ logoSmall: html`
14+
+ <img src="resolve:@rocket/launch/assets/rocket-logo-light.svg" alt="Rocket" width="250" height="67.87" />
15+
+ `,
16+
```
17+
18+
- a12adf2: Add padding above slogan an home page
19+
- Updated dependencies [a48dcd8]
20+
- Updated dependencies [0ed3d6d]
21+
- @rocket/cli@0.20.3
22+
- @rocket/engine@0.2.7
23+
324
## 0.21.1
425

526
### Patch Changes

packages/launch/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rocket/launch",
3-
"version": "0.21.1",
3+
"version": "0.21.2",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -46,9 +46,9 @@
4646
"preset"
4747
],
4848
"dependencies": {
49-
"@rocket/cli": "^0.20.1",
49+
"@rocket/cli": "^0.20.3",
5050
"@rocket/components": "^0.2.0",
51-
"@rocket/engine": "^0.2.6",
51+
"@rocket/engine": "^0.2.7",
5252
"@webcomponents/template-shadowroot": "^0.1.0",
5353
"lit": "^2.3.0",
5454
"workbox-window": "^6.1.5"

0 commit comments

Comments
 (0)