@mineui/utils 0.0.1 → 0.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mineui/utils",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "utils",
5
5
  "keywords": ["mine", "ui", "utils"],
6
6
  "license": "MIT",
@@ -21,15 +21,18 @@
21
21
  "main": "./dist/index.js",
22
22
  "types": "./dist/index.d.ts",
23
23
  "files": ["dist"],
24
+ "style": "./dist/index.css",
24
25
  "exports": {
25
26
  ".": {
26
27
  "types": "./dist/index.d.ts",
27
28
  "import": "./dist/index.js",
28
29
  "require": "./dist/index.js"
29
- }
30
+ },
31
+ "./style": "./dist/scss/index.scss"
30
32
  },
31
33
  "scripts": {
32
- "build": "sass src/style/index.scss dist/index.css --style=compressed",
34
+ "build": "sass src/scss/index.scss dist/index.css --style=compressed && bun scripts/copy-scss.js",
35
+ "build:scss": "bun scripts/copy-scss.js",
33
36
  "lint": "eslint src --ext .ts",
34
37
  "test": "bun test"
35
38
  },