mantine-reduce-css 1.0.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.
- package/.github/FUNDING.yml +15 -0
- package/.github/workflows/build-publish.yaml +21 -0
- package/.gitmodules +3 -0
- package/LICENSE +21 -0
- package/README.md +41 -0
- package/dist/index.js +2129 -0
- package/mantine.css +5 -0
- package/package.json +31 -0
- package/tmp/a.tsx +2 -0
package/mantine.css
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mantine-reduce-css",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.0",
|
|
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
|
+
}
|
|
31
|
+
}
|
package/tmp/a.tsx
ADDED