Skip to content

Commit

Permalink
Merge branch 'roots:main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuafredrickson authored Oct 1, 2024
2 parents 7698759 + 803310f commit 4fc6072
Show file tree
Hide file tree
Showing 5 changed files with 302 additions and 75 deletions.
27 changes: 27 additions & 0 deletions sources/@repo/docs/content/releases/6.23.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
slug: "6.23.3"
title: "6.23.3"
description: Release notes for bud.js 6.23.3
date: 2024-08-21T07:44:40Z
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
---

<!--This file is generated-->

A couple minor bug fixes.

<!--truncate-->

## What's Changed

* 🩹 fix(patch): @roots/bud-eslint: `lintDirtyModulesOnly` is false by default by @kellymears in https://github.com/roots/bud/pull/2638
* 🩹 fix(patch): tailwind plugin compatibility (fixes [#2639](https://github.com/roots/bud/pull/2640)) by @kellymears in https://github.com/roots/bud/pull/2640

**Full Changelog**: https://github.com/roots/bud/compare/v6.23.2...v6.23.3
46 changes: 46 additions & 0 deletions sources/@repo/docs/content/releases/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1693,5 +1693,51 @@
"patch": 2,
"semver": "6.23.2",
"tags": "[release, 6, 6.23]"
},
{
"url": "https://api.github.com/repos/roots/bud/releases/171211217",
"assets_url": "https://api.github.com/repos/roots/bud/releases/171211217/assets",
"upload_url": "https://uploads.github.com/repos/roots/bud/releases/171211217/assets{?name,label}",
"html_url": "https://github.com/roots/bud/releases/tag/v6.23.3",
"id": 171211217,
"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_84KNHnR",
"tag_name": "v6.23.3",
"target_commitish": "main",
"name": "6.23.3",
"draft": false,
"prerelease": false,
"created_at": "2024-08-21T07:38:40Z",
"published_at": "2024-08-21T07:44:40Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/roots/bud/tarball/v6.23.3",
"zipball_url": "https://api.github.com/repos/roots/bud/zipball/v6.23.3",
"body": "## What's Changed\r\n\r\n* 🩹 fix(patch): @roots/bud-eslint: `lintDirtyModulesOnly` is false by default by @kellymears in https://github.com/roots/bud/pull/2638\r\n* 🩹 fix(patch): tailwind plugin compatibility (fixes [#2639](https://github.com/roots/bud/pull/2640)) by @kellymears in https://github.com/roots/bud/pull/2640\r\n\r\n**Full Changelog**: https://github.com/roots/bud/compare/v6.23.2...v6.23.3",
"mentions_count": 1,
"intro": "A couple minor bug fixes.",
"major": 6,
"minor": 23,
"patch": 3,
"semver": "6.23.3",
"tags": "[release, 6, 6.23]"
}
]
3 changes: 2 additions & 1 deletion sources/@roots/bud-framework/src/bootstrap/files/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import type {InspectResult} from '@roots/filesystem/filesystem'

import {builtinModules} from 'node:module'
import {join, parse} from 'node:path'
import {normalize} from 'path/posix'

import {get as getPaths} from '@roots/bud-framework/bootstrap/paths'
import {BudError} from '@roots/bud-support/errors'
Expand Down Expand Up @@ -134,7 +135,7 @@ async function getFileInfo(filename: string) {
...omit(inspect, `absolutePath`, `type`, `filename`),
bud: inspect.name.includes(`bud`),
local: inspect.name.includes(`local`),
path: inspect.absolutePath,
path: normalize(inspect.absolutePath),
target: getFileTarget(inspect),
type: getFileType(inspect, parsed),
...parsed,
Expand Down
2 changes: 1 addition & 1 deletion sources/@roots/bud-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@
"env-paths": "3.0.0",
"esbuild-wasm": "0.21.5",
"execa": "8.0.1",
"express": "4.19.2",
"express": "4.20.0",
"figures": "5.0.0",
"file-loader": "6.2.0",
"get-port": "7.1.0",
Expand Down
Loading

0 comments on commit 4fc6072

Please sign in to comment.