chore(deps): update devdependencies
This PR contains the following updates:
Release Notes
modernweb-dev/rocket (@rocket/cli)
v0.21.0
Minor Changes
-
74b2b35: Update to Rollup v3 + all plugins that require it
Patch Changes
v0.20.4
Patch Changes
-
68e05f4:rocket lintcan now validate external links.Example:
rocket lint --validate-externals -
Updated dependencies [
97d5fb2]
v0.20.3
Patch Changes
-
a48dcd8: Introducingrocket lintto verify if all your links are correct.There are two modes:
v0.20.2
Patch Changes
-
39206a1:rocket startnow outputs to_site-devinstead of_site. -
39206a1:rocket startclears only its output folder (defaults to_site-dev) -
cbfb0f9: Addrocket previewcommand to enable fast checking of the production build
v0.20.1
Patch Changes
-
8dedc56: Add start message forrocket start🚀 Rocket Engine v0.2.5 🚧 Local: http://localhost:8000/ 🌐 Network: http://xxx.xxx.xxx.xxx:8000/ -
Updated dependencies [
8dedc56] -
Updated dependencies [
390335d]
v0.20.0
Minor Changes
-
5226ab0: BREAKING CHANGE: Complete rewrite introducing@rocket/engineIntroduces class based templates, server side rendering of web components and a file based routing.For more information see the migration guide.
The legacy documentation is still available.
Patch Changes
- Updated dependencies [
5226ab0]
v0.10.2
Patch Changes
-
60310ab: Improve performance by initializing sax-wasm only once even when it is running in parallel - Updated dependencies [
60310ab]
v0.10.1
Patch Changes
-
15a82c0: Enable including script files into the simulator via<script src=".." mdjs-use> -
15a82c0: Allow only a limited set of characters for simulator includes[a-zA-Z0-9\/\-_]. Notably, there is no:-
:to preventhttp://...includes -
.so filenames asthis.is.my.jsare not supported. Also includes will be without file endings which will be added automatically
-
v0.10.0
Minor Changes
-
70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe optionsThere is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.
- addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' }); + addPlugin(myPlugin, { myFlag: true }, { location: 'top' }); - adjustPluginOptions('my-plugin', { myFlag: true }); + adjustPluginOptions(myPlugin, { myFlag: true });For more details please see the Changelog of the plugins-manager package.
Patch Changes
- Updated dependencies [
70bb7a1] - Updated dependencies [
70bb7a1] - Updated dependencies [
70bb7a1] - Updated dependencies [
70bb7a1] - Updated dependencies [
70bb7a1] - Updated dependencies [
70bb7a1] - Updated dependencies [
70bb7a1] - Updated dependencies [
70bb7a1]
v0.9.11
Patch Changes
-
7301a0f: Pass on rocketConfig to the eleventy function to enable conditional configurations/filters -
42418f2: Disable the service worker for local development -
5ac6aa6: Set the encoding of the simulator to utf8 via a html meta tag
v0.9.10
Patch Changes
-
738941a: Inrocket.config.jsyou can now supply a rollup config function.export default { rollup: config => { // config will be the fully generated config object after all presets have been applied if (config.plugins.includes('...')) { // change some config options } return config; }, };
v0.9.9
Patch Changes
-
adf0f1d: use img openEnd to insert responsive image
v0.9.8
Patch Changes
-
a5661b8: Updates dependencies
v0.9.7
Patch Changes
-
d91e46b: Addbootstrapcommand -
9978ea7: Improves typings foraddPlugin - Updated dependencies [
9978ea7]
v0.9.6
Patch Changes
-
bf99541: Adjust copy logic to- for
_assets/_staticcopy over everything - for all other paths copy over everything except
*.htmland*.md
- for
-
579e8e7: Unordered joiningBlocks are now considered with the order number10 000and will generally be at the bottom. You can use numbers> 10 000to place files even after unordered joiningBlocks.
v0.9.5
Patch Changes
-
1b9559f: Addsbefore11tyhook to config and presets
v0.9.4
Patch Changes
-
2b5c61d: Allow configuring the imagePreset ignore rules via the optionignoreexport default { imagePresets: { responsive: { // ... ignore: ({ src }) => src.endsWith('.jpeg') || src.endsWith('svg') || src.includes('rocket-unresponsive.'), }, }, }; -
2b5c61d: Do not generate responsive images for files ending in.svgor that includerocket-ignore. -
ce0b00e: don't transform external images -
3b1a0cf: Allow to configure check-html-linksexport default { checkLinks: { /* ... */ }, };
v0.9.3
Patch Changes
-
795a361: The server worker url should respect a set pathPrefix.
v0.9.2
Patch Changes
-
5330740: When replacing images with responsive picture tags do this from the bottom up so the initial dom parsing locations still hold true.
v0.9.1
Patch Changes
-
7301a0f: Pass on rocketConfig to the eleventy function to enable conditional configurations/filters -
42418f2: Disable the service worker for local development -
5ac6aa6: Set the encoding of the simulator to utf8 via a html meta tag
v0.9.0
Minor Changes
-
eae2007: Update to mdjs version that uses lit 2 and renders stories to light dom
Patch Changes
- Updated dependencies [
eae2007]
v0.8.2
Patch Changes
-
60e85a1: Supportpicturetags by handlingsourcetags withsrcsetattributes in the rollup asset gathering build phase. - Updated dependencies [
60e85a1]
v0.8.1
Patch Changes
-
c338696: Updated dependency of eleventy-img for M1 compatibility
v0.8.0
Minor Changes
-
8bba4a8: Every content image in markdown will outputted in multiple widths and formats to ensure small image file sizes while retaining quality. You can adjust the defaults by settingimagePresets.responsive.export default { imagePresets: { responsive: { widths: [600, 900, 1640], formats: ['avif', 'jpeg'], sizes: '(min-width: 1024px) 820px, calc(100vw - 40px)', }, }, };
v0.7.0
Minor Changes
-
2724f07: The service worker no longer precaches all urls and assets. It now- caches already visited pages
- caches assets of visited pages (up to 100 files then it replaces older entries)
- on service worker activation it will reload the page if a newer version is available
Patch Changes
- Updated dependencies [
2724f07]
modernweb-dev/rocket (@rocket/launch)
v0.21.3
Patch Changes
-
660f64c: Change the default gitBranch to main - Updated dependencies [
68e05f4]- @rocket/cli@0.20.4
v0.21.2
Patch Changes
-
87c10ec: Work without JavaScript if Declarative Shadow Dom (DSD) is supported by browser -
d7e461c: Replace Layout OptionslogoSrcandlogoAltstrings with alogoSmallTemplateResult- 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
v0.21.1
Patch Changes
-
390335d: Improve title tag handling - Updated dependencies [
8dedc56] - Updated dependencies [
390335d] - Updated dependencies [
8dedc56]- @rocket/engine@0.2.6
- @rocket/cli@0.20.1
v0.21.0
Minor Changes
-
5226ab0: BREAKING CHANGE: New version built for @rocket/engine and @rocket/cli 0.20+For more information see the migration guide.
Patch Changes
- Updated dependencies [
5226ab0] - Updated dependencies [
5226ab0] - Updated dependencies [
5226ab0]- @rocket/components@0.2.0
- @rocket/cli@0.20.0
- @rocket/engine@0.2.0
v0.6.0
Minor Changes
-
70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe optionsThere is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.
- addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' }); + addPlugin(myPlugin, { myFlag: true }, { location: 'top' }); - adjustPluginOptions('my-plugin', { myFlag: true }); + adjustPluginOptions(myPlugin, { myFlag: true });For more details please see the Changelog of the plugins-manager package.
v0.5.6
Patch Changes
-
0987a41: Fix styling in darkmode
v0.5.5
Patch Changes
-
3d22fbb: Prevent styles from applying to lion components that are rendered in light dom
v0.5.4
Patch Changes
-
d91e46b: Add noscript styles which explicity show unregistered custom elements
v0.5.3
Patch Changes
-
b7d5cba: remove footer extra comma
v0.5.2
Patch Changes
-
9e3c2f5: Only show the help & feedback link if a site.helpUrl is defined -
9625b94: Remove footer urls to pages that users would need to create -
1f79d7a: Add font-family CSS variables-
--primary-font-familyfor body text -
--secondary-font-familyfor emphasis (e.g. call-to-action) -
--heading-font-familyfor headings (defaults to--primary-font-family) -
--monospace-font-familyfor code blocks
-
v0.5.1
Patch Changes
v0.5.0
Minor Changes
-
8bba4a8: Configure responsive image sizes to align with the launch preset breakpoints. The set value issizes: '(min-width: 1024px) 820px, calc(100vw - 40px)'.
modernweb-dev/rocket (@rocket/search)
v0.7.0
Minor Changes
-
5226ab0: BREAKING CHANGE: New version built for @rocket/engine and @rocket/cli 0.20+For more information see the migration guide.
Patch Changes
- Updated dependencies [
5226ab0]
modernweb-dev/web (@web/dev-server-esbuild)
v0.4.1
Patch Changes
v0.4.0
Minor Changes
-
febd9d9: Set node 16 as the minimum version.
Patch Changes
v0.3.6
Patch Changes
-
8128ca5: Update @rollup/plugin-replace - Updated dependencies [
c103f16]
v0.3.5
Patch Changes
-
0f5631d: chore(deps): bump ua-parser-js from 1.0.32 to 1.0.33
v0.3.4
Patch Changes
-
1b2ae08: Bump theesbuildversion to^0.16 || ^0.17fix a decorator bug in 0.14 - Updated dependencies [
ac05ca5] - Updated dependencies [
acc0a84] - Updated dependencies [
81db401]
v0.3.3
Patch Changes
-
cfc2aa1: Expose banner/footer as a pass-through to esbuild transform
v0.3.2
Patch Changes
jdvivar/eleventy-plugin-add-web-component-definitions (eleventy-plugin-add-web-component-definitions)
v2.2.0
Features
- adding undefined content with non-html files edge case (6e91928)
2.1.2 (2022-04-01)
2.1.1 (2022-01-03)
v2.1.4
eslint/eslint (eslint)
v8.51.0
Features
-
0a9c433feat: Add--no-warn-ignoredCLI option for flat config (#17569) (Domantas Petrauskas) -
977e67efeat: logical-assignment-operators to report expressions with 3 operands (#17600) (Yosuke Ota)
Bug Fixes
-
f976b2ffix: make rule severity case-sensitive in flat config (#17619) (Milos Djermanovic) -
0edfe36fix: Ensure crash error messages are not duplicated (#17584) (Nicholas C. Zakas) -
dd79abcfix:eslint-disableto be able to parse quoted rule names (#17612) (Yosuke Ota) -
d2f6801fix: Ensure correct code path for && followed by ?? (#17618) (Nicholas C. Zakas)
Documentation
-
ee5be81docs: default tosourceType: "module"in rule examples (#17615) (Francesco Trotta) -
1aa26dfdocs: Add more examples for multiline-ternary (#17610) (George Ashiotis) -
47d0b44docs: Update README (GitHub Actions Bot) -
dbf831edocs: use generated og image (#17601) (Percy Ma) -
1866da5docs: Update README (GitHub Actions Bot)
Chores
-
1ef39eachore: upgrade @eslint/js@8.51.0 (#17624) (Milos Djermanovic) -
f8c7403chore: package.json update for @eslint/js release (ESLint Jenkins) -
2665552test: fix flat config linter tests to use Linter in flat config mode (#17616) (Milos Djermanovic) -
7b77bccchore: Refactor CodePathState (#17510) (Nicholas C. Zakas) -
bc77c9achore: Document and refactor ForkContext (#17566) (Nicholas C. Zakas) -
24e1f14chore: Refactor and document CodePath (#17558) (Nicholas C. Zakas)
v8.50.0
Features
-
27d5a9efeat: add suggestions to array-callback-return (#17590) (Tanuj Kanti) -
f9082fffeat: flat-rule-tester make sure default config always matches (#17585) (fnx) -
83914adfeat: Implement SourceCode#applyInlineConfig() (#17351) (Nicholas C. Zakas) -
22a5582feat: add ruleno-object-constructor, deprecateno-new-object(#17576) (Francesco Trotta) -
85a3d9efeat: allowVoid option in array-callback-return (#17564) (Tanuj Kanti)
Bug Fixes
-
cc4d26bfix: Ensure deprecated context.parserServices warns (#17593) (Nicholas C. Zakas) -
1ea4cfbfix: Ensure all RuleTester tests all deprecated context methods (#17587) (Nicholas C. Zakas) -
aa1b657fix: wrong suggestion and message inno-misleading-character-class(#17571) (Yosuke Ota)
Documentation
-
1800537docs: Fix and standardize JSX code examples (#17591) (Francesco Trotta) -
48a44a7docs: Add correct/incorrect tags toprefer-arrow-callback(#17589) (Francesco Trotta) -
20893d4docs: fix incorrect tag's place (#17575) (Tanuj Kanti) -
bd7a71fdocs: Update README (GitHub Actions Bot)
Chores
-
f8a8a2dchore: upgrade @eslint/js@8.50.0 (#17599) (Milos Djermanovic) -
38ada6dchore: package.json update for @eslint/js release (ESLint Jenkins)
v8.49.0
Features
-
da09f4efeat: Implement onUnreachableCodePathStart/End (#17511) (Nicholas C. Zakas) -
32b2327feat: Emit deprecation warnings in RuleTester (#17527) (Nicholas C. Zakas) -
acb7df3feat: add newenforceoption tolines-between-class-members(#17462) (Nitin Kumar)
Documentation
-
ecfb54fdocs: Update README (GitHub Actions Bot) -
de86b3bdocs: updateno-promise-executor-returnexamples (#17529) (Nitin Kumar) -
032c4b1docs: add typescript template (#17500) (James) -
cd7da5cdocs: Update README (GitHub Actions Bot)
Chores
-
b7621c3chore: remove browser test fromnpm test(#17550) (Milos Djermanovic) -
cac45d0chore: upgrade @eslint/js@8.49.0 (#17549) (Milos Djermanovic) -
cd39508chore: package.json update for @eslint/js release (ESLint Jenkins) -
203a971ci: bump actions/checkout from 3 to 4 (#17530) (dependabot[bot]) -
a40fa50chore: use eslint-plugin-jsdoc's flat config (#17516) (Milos Djermanovic) -
926a286test: replace Karma with Webdriver.IO (#17126) (Christian Bromann) -
f591d2cchore: Upgrade config-array (#17512) (Nicholas C. Zakas)
v8.48.0
Features
-
1fbb3b0feat: correct update direction infor-direction(#17483) (Francesco Trotta) -
d73fbf2feat: rule tester do not create empty valid or invalid test suites (#17475) (fnx) -
ee2f718feat: Allowvoidin ruleno-promise-executor-return(#17282) (nopeless)
Bug Fixes
Documentation
-
7a51d77docs: no-param-reassign mention strict mode ([#17494](http
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.