Skip to content

Commit 59dda95

Browse files
Migrate base branch to main
1 parent 82f152d commit 59dda95

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/pre-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish pre-release
22
concurrency: publish
33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
jobs:
77
publish:
88
runs-on: ubuntu-latest

packages/tailwindcss-language-server/src/util/error.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function toString(err: any, includeStack: boolean = true): string {
1111
}
1212
}
1313

14-
// https://github.com/vscode-langservers/vscode-json-languageserver/blob/master/src/utils/runner.ts
14+
// https://github.com/vscode-langservers/vscode-json-languageserver/blob/main/src/utils/runner.ts
1515
export function formatError(message: string, err: any, includeStack: boolean = true): string {
1616
if (err) {
1717
return `${message}: ${toString(err, includeStack)}`

packages/vscode-tailwindcss/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://raw.githubusercontent.com/bradlc/vscode-tailwindcss/master/packages/vscode-tailwindcss/.github/banner.png" alt="" />
1+
<img src="https://raw.githubusercontent.com/tailwindlabs/tailwindcss-intellisense/main/packages/vscode-tailwindcss/.github/banner.png" alt="" />
22

33
Tailwind CSS IntelliSense enhances the Tailwind development experience by providing Visual Studio Code users with advanced features such as autocomplete, syntax highlighting, and linting.
44

@@ -14,19 +14,19 @@ In order for the extension to activate you must have [`tailwindcss` installed](h
1414

1515
Intelligent suggestions for class names, as well as [CSS functions and directives](https://tailwindcss.com/docs/functions-and-directives/).
1616

17-
<img src="https://raw.githubusercontent.com/bradlc/vscode-tailwindcss/master/packages/vscode-tailwindcss/.github/autocomplete.png" alt="" />
17+
<img src="https://raw.githubusercontent.com/tailwindlabs/tailwindcss-intellisense/main/packages/vscode-tailwindcss/.github/autocomplete.png" alt="" />
1818

1919
### Linting
2020

2121
Highlights errors and potential bugs in both your CSS and your markup.
2222

23-
<img src="https://raw.githubusercontent.com/bradlc/vscode-tailwindcss/master/packages/vscode-tailwindcss/.github/linting.png" alt="" />
23+
<img src="https://raw.githubusercontent.com/tailwindlabs/tailwindcss-intellisense/main/packages/vscode-tailwindcss/.github/linting.png" alt="" />
2424

2525
### Hover Preview
2626

2727
See the complete CSS for a Tailwind class name by hovering over it.
2828

29-
<img src="https://raw.githubusercontent.com/bradlc/vscode-tailwindcss/master/packages/vscode-tailwindcss/.github/hover.png" alt="" />
29+
<img src="https://raw.githubusercontent.com/tailwindlabs/tailwindcss-intellisense/main/packages/vscode-tailwindcss/.github/hover.png" alt="" />
3030

3131
### Tailwind CSS Language Mode
3232

@@ -68,7 +68,7 @@ When a list of CSS classes is selected this command can be used to sort them in
6868

6969
### `tailwindCSS.includeLanguages`
7070

71-
This setting allows you to add additional language support. The key of each entry is the new language ID and the value is any one of the extensions [built-in languages](https://github.com/tailwindlabs/tailwindcss-intellisense/blob/master/packages/tailwindcss-language-service/src/util/languages.ts), depending on how you want the new language to be treated (e.g. `html`, `css`, or `javascript`):
71+
This setting allows you to add additional language support. The key of each entry is the new language ID and the value is any one of the extensions [built-in languages](https://github.com/tailwindlabs/tailwindcss-intellisense/blob/main/packages/tailwindcss-language-service/src/util/languages.ts), depending on how you want the new language to be treated (e.g. `html`, `css`, or `javascript`):
7272

7373
```json
7474
{

0 commit comments

Comments
 (0)