diff --git a/README.md b/README.md index 21cddde18f..7626de0c83 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@repo/docs/content/learn/config/entrypoints.mdx b/sources/@repo/docs/content/learn/config/entrypoints.mdx index 1f63ab091d..b4bf5daf3d 100644 --- a/sources/@repo/docs/content/learn/config/entrypoints.mdx +++ b/sources/@repo/docs/content/learn/config/entrypoints.mdx @@ -18,23 +18,23 @@ detect this and create an entrypoint for you. If you only have a single entrypoint then it is enough to just pass the filename: - + -```ts title=bud.config.ts -bud.entry('app') // src/app.js +```ts +bud.entry('app') ``` -```js title=bud.config.js -bud.entry('app') // src/app.js +```js +bud.entry('app') ``` -```yml title=bud.config.yml -entry: app # src/app.js +```yml +entry: app ``` ```json title=bud.config.json { - "entry": "app" // src/app.js + "entry": "app" } ``` @@ -42,22 +42,22 @@ entry: app # src/app.js If you have more than one file to include in the bundle, you can use an array: - + - ```ts title=bud.config.ts + ```ts bud.entry(['app.js', 'global.css']) ``` - ```js title=bud.config.js + ```js bud.entry(['app.js', 'global.css']) ``` - ```yml title=bud.config.yml + ```yml entry: - ['app.js', 'global.css'] ``` - ```json title=bud.config.json + ```json { "entry": [["app.js", "global.css"]] } @@ -69,29 +69,29 @@ If you have additional entrypoints you may call [bud.entry](/reference/bud.entry But, it might be preferable to use an object: - + - ```ts title=bud.config.ts + ```ts bud.entry({ app: ['app.js', 'global.css'], landing: ['landing.js', 'landing.css'], }) ``` - ```js title=bud.config.js + ```js bud.entry({ app: ['app.js', 'global.css'], landing: ['landing.js', 'landing.css'], }) ``` - ```yml title=bud.config.yml + ```yml entry: app: ['app.js', 'global.css'] landing: ['landing.js', 'landing.css'] ``` - ```json title=bud.config.json + ```json { "entry": { "app": ["app.js", "global.css"], diff --git a/sources/@repo/docs/content/learn/config/optimization.mdx b/sources/@repo/docs/content/learn/config/optimization.mdx index c027e5fdbb..d5c48f67b9 100644 --- a/sources/@repo/docs/content/learn/config/optimization.mdx +++ b/sources/@repo/docs/content/learn/config/optimization.mdx @@ -31,7 +31,6 @@ hash: true - ## Minimizing code Use the [bud.minimize](/reference/bud.minimize) function to run your application code through a minifier. diff --git a/sources/@repo/docs/content/releases/6.23.1.md b/sources/@repo/docs/content/releases/6.23.1.md new file mode 100644 index 0000000000..4037ce6b6c --- /dev/null +++ b/sources/@repo/docs/content/releases/6.23.1.md @@ -0,0 +1,27 @@ +--- +slug: "6.23.1" +title: "6.23.1" +description: Release notes for bud.js 6.23.1 +date: 2024-06-27T06:07:17Z +author: kellymears +author_title: Developer +author_url: https://github.com/kellymears +author_image_url: https://avatars.githubusercontent.com/u/397606?v=4 +tags: + - release + - 6 + - 6.23 +--- + + + +Fixes an error with certain stylelint configurations. + + + +## What's Changed + +* 📕 docs(none): fix releases nav by @kellymears in https://github.com/roots/bud/pull/2611 +* 🩹 fix(none): fix #2612 by @kellymears in https://github.com/roots/bud/pull/2613 + +**Full Changelog**: https://github.com/roots/bud/compare/v6.23.0...v6.23.1 diff --git a/sources/@repo/docs/content/releases/data.json b/sources/@repo/docs/content/releases/data.json index 9be823a356..c68c8d9f78 100644 --- a/sources/@repo/docs/content/releases/data.json +++ b/sources/@repo/docs/content/releases/data.json @@ -1601,5 +1601,51 @@ "patch": 0, "semver": "6.23.0", "tags": "[release, 6, 6.23]" + }, + { + "url": "https://api.github.com/repos/roots/bud/releases/162695591", + "assets_url": "https://api.github.com/repos/roots/bud/releases/162695591/assets", + "upload_url": "https://uploads.github.com/repos/roots/bud/releases/162695591/assets{?name,label}", + "html_url": "https://github.com/roots/bud/releases/tag/v6.23.1", + "id": 162695591, + "author": { + "login": "kellymears", + "id": 397606, + "node_id": "MDQ6VXNlcjM5NzYwNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/397606?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kellymears", + "html_url": "https://github.com/kellymears", + "followers_url": "https://api.github.com/users/kellymears/followers", + "following_url": "https://api.github.com/users/kellymears/following{/other_user}", + "gists_url": "https://api.github.com/users/kellymears/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kellymears/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kellymears/subscriptions", + "organizations_url": "https://api.github.com/users/kellymears/orgs", + "repos_url": "https://api.github.com/users/kellymears/repos", + "events_url": "https://api.github.com/users/kellymears/events{/privacy}", + "received_events_url": "https://api.github.com/users/kellymears/received_events", + "type": "User", + "site_admin": false + }, + "node_id": "RE_kwDOEDXd_84Jsomn", + "tag_name": "v6.23.1", + "target_commitish": "main", + "name": "6.23.1", + "draft": false, + "prerelease": false, + "created_at": "2024-06-27T05:55:59Z", + "published_at": "2024-06-27T06:07:17Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/roots/bud/tarball/v6.23.1", + "zipball_url": "https://api.github.com/repos/roots/bud/zipball/v6.23.1", + "body": "## What's Changed\r\n\r\n* 📕 docs(none): fix releases nav by @kellymears in https://github.com/roots/bud/pull/2611\r\n* 🩹 fix(none): fix #2612 by @kellymears in https://github.com/roots/bud/pull/2613\r\n\r\n**Full Changelog**: https://github.com/roots/bud/compare/v6.23.0...v6.23.1", + "mentions_count": 1, + "intro": "Fixes an error with certain stylelint configurations.", + "major": 6, + "minor": 23, + "patch": 1, + "semver": "6.23.1", + "tags": "[release, 6, 6.23]" } ] \ No newline at end of file diff --git a/sources/@repo/docs/src/components/example.jsx b/sources/@repo/docs/src/components/example.jsx index d9e5f98c53..fd8c02746a 100644 --- a/sources/@repo/docs/src/components/example.jsx +++ b/sources/@repo/docs/src/components/example.jsx @@ -6,7 +6,7 @@ import React from 'react' function Example({children, config = true, title}) { if (!children) return null - const values = [] + const tabs = [] children = Array.isArray(children) ? children : [children] @@ -18,19 +18,24 @@ function Example({children, config = true, title}) { ...child, code: child.children, language: child.className.split(`language-`).pop(), - title: child.title ?? null, } }) + .map(child => ({ + ...child, + title: + child.metastring?.match(/title=(.*)/)?.[1] ?? + `${title}.${child.language}`, + })) children.forEach(child => - values.push({ + tabs.push({ label: child.language.toUpperCase(), value: child.language, }), ) return ( - + {children.map((child, id) => { return ( @@ -39,7 +44,7 @@ function Example({children, config = true, title}) { language={child.language} metastring={child.metastring} showLineNumbers - title={child.title ?? `${title}.${child.language}`} + title={child.title} > {config && child.language === `ts` ? `import type {Bud} from '@roots/bud'\n\nexport default async (bud: Bud) => {\n` diff --git a/sources/@roots/blade-loader/README.md b/sources/@roots/blade-loader/README.md index 58c04bf117..2b15d11fc0 100644 --- a/sources/@roots/blade-loader/README.md +++ b/sources/@roots/blade-loader/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/browserslist-config/README.md b/sources/@roots/browserslist-config/README.md index 702c67424d..7bca155a6f 100644 --- a/sources/@roots/browserslist-config/README.md +++ b/sources/@roots/browserslist-config/README.md @@ -75,7 +75,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-api/README.md b/sources/@roots/bud-api/README.md index a89e3df471..ad338451b0 100644 --- a/sources/@roots/bud-api/README.md +++ b/sources/@roots/bud-api/README.md @@ -140,7 +140,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-babel/README.md b/sources/@roots/bud-babel/README.md index ecaf2c69c1..0de227c784 100644 --- a/sources/@roots/bud-babel/README.md +++ b/sources/@roots/bud-babel/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-build/README.md b/sources/@roots/bud-build/README.md index 530de0a40f..05da0fb50c 100644 --- a/sources/@roots/bud-build/README.md +++ b/sources/@roots/bud-build/README.md @@ -96,7 +96,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-cache/README.md b/sources/@roots/bud-cache/README.md index c4c4b3eb72..51de225b06 100644 --- a/sources/@roots/bud-cache/README.md +++ b/sources/@roots/bud-cache/README.md @@ -60,7 +60,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-client/README.md b/sources/@roots/bud-client/README.md index 7542e9cfcc..b723b754b4 100644 --- a/sources/@roots/bud-client/README.md +++ b/sources/@roots/bud-client/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-compiler/README.md b/sources/@roots/bud-compiler/README.md index 31ab1db71d..e0f4564ebd 100644 --- a/sources/@roots/bud-compiler/README.md +++ b/sources/@roots/bud-compiler/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-compress/README.md b/sources/@roots/bud-compress/README.md index 4ab932dd4b..b791cb523f 100644 --- a/sources/@roots/bud-compress/README.md +++ b/sources/@roots/bud-compress/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-criticalcss/README.md b/sources/@roots/bud-criticalcss/README.md index f48e70f785..1a5630b75a 100644 --- a/sources/@roots/bud-criticalcss/README.md +++ b/sources/@roots/bud-criticalcss/README.md @@ -161,7 +161,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-dashboard/README.md b/sources/@roots/bud-dashboard/README.md index 34319a6714..93d6902db6 100644 --- a/sources/@roots/bud-dashboard/README.md +++ b/sources/@roots/bud-dashboard/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-emotion/README.md b/sources/@roots/bud-emotion/README.md index 90899ef74c..3ff51febb8 100644 --- a/sources/@roots/bud-emotion/README.md +++ b/sources/@roots/bud-emotion/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-entrypoints/README.md b/sources/@roots/bud-entrypoints/README.md index b5692e9e69..85f38fffd1 100644 --- a/sources/@roots/bud-entrypoints/README.md +++ b/sources/@roots/bud-entrypoints/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-esbuild/README.md b/sources/@roots/bud-esbuild/README.md index 36a0c09434..5c118c4c69 100644 --- a/sources/@roots/bud-esbuild/README.md +++ b/sources/@roots/bud-esbuild/README.md @@ -73,7 +73,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-eslint/README.md b/sources/@roots/bud-eslint/README.md index 850d9ab6eb..6fbf957e4c 100644 --- a/sources/@roots/bud-eslint/README.md +++ b/sources/@roots/bud-eslint/README.md @@ -148,7 +148,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-extensions/README.md b/sources/@roots/bud-extensions/README.md index d4ff5c024c..259c696221 100644 --- a/sources/@roots/bud-extensions/README.md +++ b/sources/@roots/bud-extensions/README.md @@ -70,7 +70,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-framework/README.md b/sources/@roots/bud-framework/README.md index c3e1446c57..46ad020d30 100644 --- a/sources/@roots/bud-framework/README.md +++ b/sources/@roots/bud-framework/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-hooks/README.md b/sources/@roots/bud-hooks/README.md index 230a47992a..9ca798a61b 100644 --- a/sources/@roots/bud-hooks/README.md +++ b/sources/@roots/bud-hooks/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-imagemin/README.md b/sources/@roots/bud-imagemin/README.md index fd5a1fe130..55b9618402 100644 --- a/sources/@roots/bud-imagemin/README.md +++ b/sources/@roots/bud-imagemin/README.md @@ -147,7 +147,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-mdx/README.md b/sources/@roots/bud-mdx/README.md index 736cdf41d7..0834024c98 100644 --- a/sources/@roots/bud-mdx/README.md +++ b/sources/@roots/bud-mdx/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-minify/README.md b/sources/@roots/bud-minify/README.md index 913ebed925..551736fda5 100644 --- a/sources/@roots/bud-minify/README.md +++ b/sources/@roots/bud-minify/README.md @@ -196,7 +196,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-postcss/README.md b/sources/@roots/bud-postcss/README.md index 1952d06ac4..23f6c9c683 100644 --- a/sources/@roots/bud-postcss/README.md +++ b/sources/@roots/bud-postcss/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-preset-recommend/README.md b/sources/@roots/bud-preset-recommend/README.md index 06b03a6078..8cba1027ca 100644 --- a/sources/@roots/bud-preset-recommend/README.md +++ b/sources/@roots/bud-preset-recommend/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-preset-wordpress/README.md b/sources/@roots/bud-preset-wordpress/README.md index b702e5c888..8dd3fc87af 100644 --- a/sources/@roots/bud-preset-wordpress/README.md +++ b/sources/@roots/bud-preset-wordpress/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-prettier/README.md b/sources/@roots/bud-prettier/README.md index 446ea0d792..d28c9ca1d9 100644 --- a/sources/@roots/bud-prettier/README.md +++ b/sources/@roots/bud-prettier/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-purgecss/README.md b/sources/@roots/bud-purgecss/README.md index 36635ad4ac..4e75bffdc9 100644 --- a/sources/@roots/bud-purgecss/README.md +++ b/sources/@roots/bud-purgecss/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-react/README.md b/sources/@roots/bud-react/README.md index bb2ebbfe47..952778240c 100644 --- a/sources/@roots/bud-react/README.md +++ b/sources/@roots/bud-react/README.md @@ -102,7 +102,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-sass/README.md b/sources/@roots/bud-sass/README.md index a2fe35a592..8e363147ee 100644 --- a/sources/@roots/bud-sass/README.md +++ b/sources/@roots/bud-sass/README.md @@ -132,7 +132,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-server/README.md b/sources/@roots/bud-server/README.md index bbdf779f66..ab9a91cbf5 100644 --- a/sources/@roots/bud-server/README.md +++ b/sources/@roots/bud-server/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-solid/README.md b/sources/@roots/bud-solid/README.md index 296d5c0b0b..22a756cacf 100644 --- a/sources/@roots/bud-solid/README.md +++ b/sources/@roots/bud-solid/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-stylelint/README.md b/sources/@roots/bud-stylelint/README.md index 4659e51b5a..94b518ecfb 100644 --- a/sources/@roots/bud-stylelint/README.md +++ b/sources/@roots/bud-stylelint/README.md @@ -119,7 +119,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-support/README.md b/sources/@roots/bud-support/README.md index 7692a3fc71..8d162f078d 100644 --- a/sources/@roots/bud-support/README.md +++ b/sources/@roots/bud-support/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-swc/README.md b/sources/@roots/bud-swc/README.md index 508ed9d302..3797710cd9 100644 --- a/sources/@roots/bud-swc/README.md +++ b/sources/@roots/bud-swc/README.md @@ -211,7 +211,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-tailwindcss-theme-json/README.md b/sources/@roots/bud-tailwindcss-theme-json/README.md index 26b0188d6a..2c099d371d 100644 --- a/sources/@roots/bud-tailwindcss-theme-json/README.md +++ b/sources/@roots/bud-tailwindcss-theme-json/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-tailwindcss/README.md b/sources/@roots/bud-tailwindcss/README.md index 3c18ac9b00..87a1552a29 100644 --- a/sources/@roots/bud-tailwindcss/README.md +++ b/sources/@roots/bud-tailwindcss/README.md @@ -168,7 +168,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-typescript/README.md b/sources/@roots/bud-typescript/README.md index 262bccb1f9..44ddfdc7c5 100644 --- a/sources/@roots/bud-typescript/README.md +++ b/sources/@roots/bud-typescript/README.md @@ -106,7 +106,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-vue/README.md b/sources/@roots/bud-vue/README.md index 15d6e4f3ea..f446a72460 100644 --- a/sources/@roots/bud-vue/README.md +++ b/sources/@roots/bud-vue/README.md @@ -81,7 +81,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-wordpress-dependencies/README.md b/sources/@roots/bud-wordpress-dependencies/README.md index 151d3d7af8..12e12bcf0b 100644 --- a/sources/@roots/bud-wordpress-dependencies/README.md +++ b/sources/@roots/bud-wordpress-dependencies/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-wordpress-externals/README.md b/sources/@roots/bud-wordpress-externals/README.md index c11ab24d2f..aa22c8ccd5 100644 --- a/sources/@roots/bud-wordpress-externals/README.md +++ b/sources/@roots/bud-wordpress-externals/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud-wordpress-theme-json/README.md b/sources/@roots/bud-wordpress-theme-json/README.md index 698c34da29..cfbace0a68 100644 --- a/sources/@roots/bud-wordpress-theme-json/README.md +++ b/sources/@roots/bud-wordpress-theme-json/README.md @@ -148,7 +148,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/bud/README.md b/sources/@roots/bud/README.md index a7b0564b75..41d8a0adbf 100644 --- a/sources/@roots/bud/README.md +++ b/sources/@roots/bud/README.md @@ -42,12 +42,12 @@ Call `bud --help` for usage information. ## Node -Instantiate **bud** is using the `factory` export: +Instantiate **bud.js** using the `factory` export: ```js -import {factory} from '@roots/bud/factory' +import { factory } from "@roots/bud/factory"; -const bud = await factory() +const bud = await factory(); ``` ## Contributing @@ -73,7 +73,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/container/README.md b/sources/@roots/container/README.md index f96dc7b9bf..9386d75b45 100644 --- a/sources/@roots/container/README.md +++ b/sources/@roots/container/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/critical-css-webpack-plugin/README.md b/sources/@roots/critical-css-webpack-plugin/README.md index c5c4a1b247..2eac303a2f 100644 --- a/sources/@roots/critical-css-webpack-plugin/README.md +++ b/sources/@roots/critical-css-webpack-plugin/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/dependencies/README.md b/sources/@roots/dependencies/README.md index 3f2953b57e..2ce4dcfc0a 100644 --- a/sources/@roots/dependencies/README.md +++ b/sources/@roots/dependencies/README.md @@ -100,7 +100,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/entrypoints-webpack-plugin/README.md b/sources/@roots/entrypoints-webpack-plugin/README.md index 5c618449c4..8c5653e493 100644 --- a/sources/@roots/entrypoints-webpack-plugin/README.md +++ b/sources/@roots/entrypoints-webpack-plugin/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/eslint-config/README.md b/sources/@roots/eslint-config/README.md index 7fff97ee1f..959b0b8501 100644 --- a/sources/@roots/eslint-config/README.md +++ b/sources/@roots/eslint-config/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/filesystem/README.md b/sources/@roots/filesystem/README.md index 93eab6e82d..362fe7e7a7 100644 --- a/sources/@roots/filesystem/README.md +++ b/sources/@roots/filesystem/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/sage/README.md b/sources/@roots/sage/README.md index b8ab49bd69..2321116fd8 100644 --- a/sources/@roots/sage/README.md +++ b/sources/@roots/sage/README.md @@ -202,7 +202,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/wordpress-dependencies-webpack-plugin/README.md b/sources/@roots/wordpress-dependencies-webpack-plugin/README.md index 5a18352497..d3d692b409 100644 --- a/sources/@roots/wordpress-dependencies-webpack-plugin/README.md +++ b/sources/@roots/wordpress-dependencies-webpack-plugin/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/wordpress-externals-webpack-plugin/README.md b/sources/@roots/wordpress-externals-webpack-plugin/README.md index d4e4386d3c..da2c562c5a 100644 --- a/sources/@roots/wordpress-externals-webpack-plugin/README.md +++ b/sources/@roots/wordpress-externals-webpack-plugin/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/wordpress-hmr/README.md b/sources/@roots/wordpress-hmr/README.md index 4050bbe8b3..af7e20ec71 100644 --- a/sources/@roots/wordpress-hmr/README.md +++ b/sources/@roots/wordpress-hmr/README.md @@ -382,7 +382,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/wordpress-theme-json-webpack-plugin/README.md b/sources/@roots/wordpress-theme-json-webpack-plugin/README.md index a66bbe896d..89c1c5d154 100644 --- a/sources/@roots/wordpress-theme-json-webpack-plugin/README.md +++ b/sources/@roots/wordpress-theme-json-webpack-plugin/README.md @@ -53,7 +53,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots). diff --git a/sources/@roots/wordpress-transforms/README.md b/sources/@roots/wordpress-transforms/README.md index 2143c040ad..3146c7daa0 100644 --- a/sources/@roots/wordpress-transforms/README.md +++ b/sources/@roots/wordpress-transforms/README.md @@ -157,7 +157,7 @@ Keep track of development and community news. ## Sponsors -**Bud** is an open source project and completely free to use. +**bud.js** is an open source project and completely free to use. However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots).