@unocss/core 0.27.6 → 0.28.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/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +11 -10
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "The instant on-demand Atomic CSS engine.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unocss",
|
|
@@ -15,17 +15,16 @@
|
|
|
15
15
|
"url": "https://github.com/unocss/unocss/issues"
|
|
16
16
|
},
|
|
17
17
|
"license": "MIT",
|
|
18
|
+
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
18
19
|
"repository": {
|
|
19
20
|
"type": "git",
|
|
20
21
|
"url": "git+https://github.com/unocss/unocss.git",
|
|
21
22
|
"directory": "packages/core"
|
|
22
23
|
},
|
|
23
24
|
"funding": "https://github.com/sponsors/antfu",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"dist"
|
|
28
|
-
],
|
|
25
|
+
"main": "dist/index.cjs",
|
|
26
|
+
"module": "dist/index.mjs",
|
|
27
|
+
"types": "dist/index.d.ts",
|
|
29
28
|
"exports": {
|
|
30
29
|
".": {
|
|
31
30
|
"require": "./dist/index.cjs",
|
|
@@ -33,9 +32,10 @@
|
|
|
33
32
|
"types": "./dist/index.d.ts"
|
|
34
33
|
}
|
|
35
34
|
},
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"sideEffects": false,
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"magic-string": "^0.26.1",
|
|
41
41
|
"unconfig": "^0.3.1"
|
|
@@ -43,5 +43,6 @@
|
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "unbuild",
|
|
45
45
|
"stub": "unbuild --stub"
|
|
46
|
-
}
|
|
46
|
+
},
|
|
47
|
+
"readme": "# @unocss/core\n\nThe core engine of [UnoCSS](https://github.com/unocss/unocss) without any presets. It can be used as the engine of your own atomic CSS framework.\n\n## Usage\n\n```ts\nimport { createGenerator } from '@unocss/core'\n\nconst generator = createGenerator({ /* user options */ }, { /* default options */ })\n\nconst { css } = await generator.generate(code)\n```\n\n## License\n\nMIT License © 2021-PRESENT [Anthony Fu](https://github.com/antfu)\n\n"
|
|
47
48
|
}
|