Version Packages

This commit is contained in:
github-actions[bot]
2022-08-23 09:31:50 +00:00
committed by Thomas Allmer
parent e53e0ebd6d
commit 0ca2bc6205
11 changed files with 63 additions and 60 deletions

View File

@@ -1,15 +0,0 @@
---
'@rocket/cli': patch
---
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
```

View File

@@ -1,16 +0,0 @@
---
'@rocket/engine': patch
---
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>
```

View File

@@ -1,5 +0,0 @@
---
'@rocket/launch': patch
---
Work without JavaScript if Declarative Shadow Dom (DSD) is supported by browser

View File

@@ -1,13 +0,0 @@
---
'@rocket/launch': patch
---
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" />
+ `,
```

View File

@@ -1,5 +0,0 @@
---
'@rocket/launch': patch
---
Add padding above slogan an home page

View File

@@ -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

View File

@@ -1,6 +1,6 @@
{
"name": "@rocket/cli",
"version": "0.20.2",
"version": "0.20.3",
"publishConfig": {
"access": "public"
},
@@ -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",

View File

@@ -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

View File

@@ -1,6 +1,6 @@
{
"name": "@rocket/engine",
"version": "0.2.6",
"version": "0.2.7",
"publishConfig": {
"access": "public"
},

View File

@@ -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

View File

@@ -1,6 +1,6 @@
{
"name": "@rocket/launch",
"version": "0.21.1",
"version": "0.21.2",
"publishConfig": {
"access": "public"
},
@@ -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"