mantine-reduce-css 1.1.1 → 2.3.0

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 (4) hide show
  1. package/README.md +80 -19
  2. package/dist/index.js +9283 -1648
  3. package/package.json +45 -29
  4. package/.gitmodules +0 -3
package/package.json CHANGED
@@ -1,31 +1,47 @@
1
1
  {
2
- "name": "mantine-reduce-css",
3
- "type": "module",
4
- "version": "1.1.1",
5
- "description": "cli tool for reducing global css for mantine",
6
- "bin": {
7
- "mantine-reduce-css": "./dist/index.js"
8
- },
9
- "scripts": {
10
- "build": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js",
11
- "start": "tsx src/index.ts example --out main.css"
12
- },
13
- "repository": {
14
- "type": "git",
15
- "url": "git+https://github.com/hilmoo/mantine-reduce-css.git"
16
- },
17
- "keywords": [
18
- "mantine"
19
- ],
20
- "author": "hilmoo",
21
- "license": "MIT",
22
- "dependencies": {
23
- "cac": "^6.7.14"
24
- },
25
- "devDependencies": {
26
- "@types/node": "^24.0.12",
27
- "esbuild": "^0.25.6",
28
- "tsx": "^4.20.3",
29
- "typescript": "^5.8.3"
30
- }
2
+ "name": "mantine-reduce-css",
3
+ "type": "module",
4
+ "version": "2.3.0",
5
+ "description": "cli tool for reducing global css for mantine",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "mantine-reduce-css": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist/**/*.js"
12
+ ],
13
+ "scripts": {
14
+ "build": "rollup -c",
15
+ "start": "tsx src/index.ts",
16
+ "fix": "biome check --fix",
17
+ "test": "vitest"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/hilmoo/mantine-reduce-css.git"
22
+ },
23
+ "keywords": [
24
+ "mantine"
25
+ ],
26
+ "author": "hilmoo",
27
+ "license": "MIT",
28
+ "dependencies": {
29
+ "cac": "^6.7.14",
30
+ "es-module-lexer": "^1.7.0",
31
+ "fast-glob": "^3.3.3"
32
+ },
33
+ "devDependencies": {
34
+ "@biomejs/biome": "2.2.5",
35
+ "@rollup/plugin-commonjs": "^28.0.6",
36
+ "@rollup/plugin-json": "^6.1.0",
37
+ "@rollup/plugin-node-resolve": "^16.0.2",
38
+ "@rollup/plugin-typescript": "^12.1.4",
39
+ "@types/node": "^24.0.12",
40
+ "esbuild": "^0.25.6",
41
+ "rollup": "^4.52.4",
42
+ "tslib": "^2.8.1",
43
+ "tsx": "^4.20.3",
44
+ "typescript": "^5.9.3",
45
+ "vitest": "^3.2.4"
46
+ }
31
47
  }
package/.gitmodules DELETED
@@ -1,3 +0,0 @@
1
- [submodule "mantine"]
2
- path = mantine
3
- url = https://github.com/mantinedev/mantine.git