Skip to content

Commit

Permalink
fix: built-in base styles not work without sira directives.
Browse files Browse the repository at this point in the history
- upgrade deps.
  • Loading branch information
riccox committed Aug 3, 2023
1 parent 90d0116 commit 0b85299
Show file tree
Hide file tree
Showing 6 changed files with 1,423 additions and 1,062 deletions.
32 changes: 16 additions & 16 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,32 @@
},
"dependencies": {
"@sira-ui/tailwind": "workspace:*",
"ahooks": "^3.7.7",
"clsx": "^1.2.1",
"framer-motion": "^10.12.16",
"i18next": "^23.2.2",
"ahooks": "^3.7.8",
"clsx": "^2.0.0",
"framer-motion": "^10.15.0",
"i18next": "^23.4.1",
"immer": "^10.0.2",
"jsx-to-string": "^1.4.0",
"next": "13.4.7",
"next": "13.4.12",
"next-seo": "^6.1.0",
"next-themes": "^0.2.1",
"nextra": "2.7.1",
"nextra-theme-docs": "^2.7.1",
"prism-react-renderer": "^2.0.5",
"nextra": "2.10.0",
"nextra-theme-docs": "^2.10.0",
"prism-react-renderer": "^2.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.0",
"react-icons": "^4.9.0",
"zustand": "^4.3.8"
"react-i18next": "^13.0.3",
"react-icons": "^4.10.1",
"zustand": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@babel/core": "^7.22.9",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.14",
"eslint-config-custom": "workspace:*",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3",
"tsconfig": "workspace:*"
}
}
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
},
"dependencies": {
"chroma-js": "^2.4.2",
"dayjs": "^1.11.8",
"dayjs": "^1.11.9",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/chroma-js": "^2.4.0",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.1",
"eslint": "8.43.0",
"@types/lodash": "^4.14.196",
"@types/node": "^20.4.6",
"eslint": "8.46.0",
"eslint-config-custom": "workspace:*",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"tsup": "^7.0.0",
"turbo": "^1.10.4",
"typescript": "^5.1.3"
"prettier": "2.8.8",
"tsup": "^7.2.0",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
Expand Down
12 changes: 6 additions & 6 deletions packages/eslint-config-custom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"main": "index.js",
"license": "MIT",
"dependencies": {
"eslint": "^8.43.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.10.4",
"eslint-plugin-react": "7.32.2"
"eslint": "^8.46.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "^8.10.0",
"eslint-config-turbo": "^1.10.12",
"eslint-plugin-react": "7.33.1"
},
"devDependencies": {
"typescript": "^5.1.3"
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public"
Expand Down
10 changes: 5 additions & 5 deletions packages/tailwind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,21 @@
"eslint-config-custom": "workspace:*",
"mkdirp": "^3.0.1",
"postcss-import": "^15.0.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"rimraf": "^5.0.1",
"terser": "^5.18.1",
"terser": "^5.19.2",
"touch-cli": "^0.0.1",
"tsconfig": "workspace:*",
"types": "workspace:*",
"typescript": "^5.1.3"
"typescript": "^5.1.6"
},
"dependencies": {
"@riccox/colorify": "^0.2.2",
"postcss": "8.4.19",
"postcss-js": "4.0.0",
"postcss-selector-parser": "^6.0.13",
"tailwindcss": "^3.3.2"
"tailwindcss": "^3.3.3"
},
"peerDependencies": {
"tailwindcss": "^3"
Expand Down
2 changes: 1 addition & 1 deletion packages/tailwind/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { safeList } = require('./dist/js/utils/safelist.js');

/** @type {import('tailwindcss').Config} */
module.exports = {
safelist: process.env.NODE_ENV === 'production' ? safeList : [],
safelist: safeList,
content: process.env.NODE_ENV === 'production' ? [{ raw: '' }] : ['../../apps/**/*.{html,js,ts,tsx,jsx}'],
darkMode: 'class',
theme: {
Expand Down
Loading

1 comment on commit 0b85299

@vercel
Copy link

@vercel vercel bot commented on 0b85299 Aug 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.