@nlabs/lex 1.54.0 → 1.54.1

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/package.json +15 -17
  2. package/webpack.config.js +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nlabs/lex",
3
- "version": "1.54.0",
3
+ "version": "1.54.1",
4
4
  "description": "Lex",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -83,21 +83,19 @@
83
83
  "dependencies": {
84
84
  "@mdx-js/loader": "^3.1.1",
85
85
  "@nlabs/webpack-plugin-static-site": "*",
86
- "@storybook/addon-docs": "^10.2.0",
87
- "@storybook/addon-links": "^10.2.0",
86
+ "@storybook/addon-docs": "^10.2.1",
87
+ "@storybook/addon-links": "^10.2.1",
88
88
  "@storybook/addon-postcss": "^2.0.0",
89
89
  "@storybook/addon-styling-webpack": "^3.0.0",
90
- "@storybook/addon-themes": "^10.2.0",
91
- "@storybook/cli": "^10.2.0",
92
- "@storybook/react": "^10.2.0",
93
- "@storybook/react-webpack5": "^10.2.0",
90
+ "@storybook/addon-themes": "^10.2.1",
91
+ "@storybook/cli": "^10.2.1",
92
+ "@storybook/react": "^10.2.1",
93
+ "@storybook/react-webpack5": "^10.2.1",
94
94
  "@swc/cli": "^0.7.10",
95
- "@swc/core": "^1.15.10",
95
+ "@swc/core": "^1.15.11",
96
96
  "@swc/jest": "^0.2.39",
97
- "@tailwindcss/forms": "^0.5.11",
98
97
  "@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
99
98
  "@tailwindcss/postcss": "4.1.18",
100
- "@tailwindcss/typography": "^0.5.19",
101
99
  "@testing-library/jest-dom": "^6.9.1",
102
100
  "@testing-library/react": "^16.3.2",
103
101
  "assert": "^2.1.0",
@@ -112,7 +110,7 @@
112
110
  "copy-webpack-plugin": "^13.0.1",
113
111
  "core-js": "^3.48.0",
114
112
  "crypto-js": "^4.2.0",
115
- "css-loader": "^7.1.2",
113
+ "css-loader": "^7.1.3",
116
114
  "css-minimizer-webpack-plugin": "^7.0.4",
117
115
  "cssnano": "^7.1.2",
118
116
  "dotenv-webpack": "^8.1.1",
@@ -143,7 +141,7 @@
143
141
  "luxon": "^3.7.2",
144
142
  "math-expression-evaluator": "^2.0.7",
145
143
  "mini-css-extract-plugin": "^2.10.0",
146
- "npm-check-updates": "^19.3.1",
144
+ "npm-check-updates": "^19.3.2",
147
145
  "openai": "^6.16.0",
148
146
  "ora": "9.1.0",
149
147
  "os-browserify": "^0.3.0",
@@ -166,14 +164,14 @@
166
164
  "postcss-value-parser": "^4.2.0",
167
165
  "process": "^0.11.10",
168
166
  "randombytes": "^2.1.0",
169
- "react": "^19.2.3",
170
- "react-dom": "^19.2.3",
167
+ "react": "^19.2.4",
168
+ "react-dom": "^19.2.4",
171
169
  "regenerator-runtime": "^0.14.1",
172
170
  "resolve": "^1.22.11",
173
171
  "rimraf": "^6.1.2",
174
172
  "semver": "^7.7.3",
175
173
  "source-map-loader": "^5.0.0",
176
- "storybook": "^10.2.0",
174
+ "storybook": "^10.2.1",
177
175
  "stream-browserify": "^3.0.0",
178
176
  "stream-http": "^3.2.0",
179
177
  "style-loader": "^4.0.0",
@@ -197,9 +195,9 @@
197
195
  "@types/express": "^5.0.6",
198
196
  "@types/jest": "^30.0.0",
199
197
  "@types/luxon": "^3.7.1",
200
- "@types/node": "^25.0.10",
198
+ "@types/node": "^25.1.0",
201
199
  "@types/ora": "^3.2.0",
202
- "@types/react": "^19.2.9",
200
+ "@types/react": "^19.2.10",
203
201
  "@types/webpack": "^5.28.5"
204
202
  },
205
203
  "overrides": {
package/webpack.config.js CHANGED
@@ -3,9 +3,7 @@
3
3
  * Copyrights licensed under the MIT License. See the accompanying LICENSE file for terms.
4
4
  */
5
5
  import {StaticSitePlugin} from '@nlabs/webpack-plugin-static-site';
6
- import tailwindForms from '@tailwindcss/forms';
7
6
  import tailwindNesting from '@tailwindcss/nesting';
8
- import tailwindTypography from '@tailwindcss/typography';
9
7
  import tailwindcss from '@tailwindcss/postcss';
10
8
  import autoprefixer from 'autoprefixer';
11
9
  import CompressionWebpackPlugin from 'compression-webpack-plugin';
@@ -539,8 +537,6 @@ export default (webpackEnv, webpackOptions) => {
539
537
  warnings: false
540
538
  }),
541
539
  tailwindNesting(),
542
- tailwindForms(),
543
- tailwindTypography(),
544
540
  postcssNesting(),
545
541
  tailwindcss(),
546
542
  autoprefixer(),