@collabchron/notiq 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/styles/notiq.css +2 -1149
  2. package/package.json +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@collabchron/notiq",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -154,6 +154,7 @@
154
154
  },
155
155
  "devDependencies": {
156
156
  "@eslint/eslintrc": "^3.3.1",
157
+ "@tailwindcss/cli": "^4.1.18",
157
158
  "@tailwindcss/typography": "^0.5.16",
158
159
  "@tanstack/eslint-plugin-query": "^5.86.0",
159
160
  "@testing-library/dom": "^10.4.1",
@@ -184,8 +185,8 @@
184
185
  "scripts": {
185
186
  "dev": "next dev --turbopack",
186
187
  "build": "pnpm install --no-frozen-lockfile && next build",
187
- "build:lib": "tsup && pnpm build:styles",
188
- "build:styles": "pwsh -Command \"if (!(Test-Path dist/styles)) { New-Item -ItemType Directory -Path dist/styles -Force }; Copy-Item src/styles/notiq.css -Destination dist/styles/notiq.css -Force\"",
188
+ "build:lib": "tsup && pnpm build:css",
189
+ "build:css": "tailwindcss -i src/styles/notiq.css -o dist/styles/notiq.css --minify",
189
190
  "start": "next start",
190
191
  "lint": "next lint",
191
192
  "test": "vitest"