Skip to content

Commit

Permalink
Merge branch 'main' into colin/cjs-tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
colinaaa committed Dec 28, 2024
2 parents 35655bf + b7e19a8 commit b99af2e
Show file tree
Hide file tree
Showing 9 changed files with 1,040 additions and 257 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cache: "pnpm"

- name: Install Dependencies
run: pnpm install && npx playwright install
run: pnpm install && npx playwright install chromium

- name: Install tailwindcss@${{ matrix.tailwindcss }}
if: ${{ matrix.tailwindcss }} != "latest"
Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rsbuild-plugin-tailwindcss",
"version": "0.0.2",
"version": "0.0.3",
"repository": "https://github.com/rspack-contrib/rsbuild-plugin-tailwindcss",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -29,18 +29,19 @@
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.48.2",
"@playwright/test": "^1.49.0",
"@rollup/pluginutils": "^5.1.3",
"@rsbuild/core": "^1.1.0",
"@rslib/core": "^0.0.16",
"@types/node": "^22.9.0",
"@rsbuild/core": "^1.1.6",
"@rslib/core": "^0.1.1",
"@rsbuild/webpack": "^1.1.3",
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"playwright": "^1.48.2",
"postcss": "^8.4.47",
"playwright": "^1.49.0",
"postcss": "^8.4.49",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@rsbuild/core": "^1.1.0",
Expand All @@ -51,7 +52,7 @@
"optional": true
}
},
"packageManager": "pnpm@9.12.3",
"packageManager": "pnpm@9.14.4",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
Expand Down
3 changes: 3 additions & 0 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "playground",
"private": true,
"version": "0.0.0",
"devDependencies": {
"rsbuild-plugin-tailwindcss": "workspace:*"
},
"scripts": {
"dev": "npx rsbuild dev",
"build": "npx rsbuild build"
Expand Down
2 changes: 1 addition & 1 deletion playground/rsbuild.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from '@rsbuild/core';
import { pluginTailwindCSS } from '../src';
import { pluginTailwindCSS } from 'rsbuild-plugin-tailwindcss';

export default defineConfig({
plugins: [pluginTailwindCSS()],
Expand Down
Loading

0 comments on commit b99af2e

Please sign in to comment.