@douyinfe/semi-scss-compile 2.0.1-alpha.2 → 2.0.4

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/README.md +3 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -15,11 +15,11 @@ There are mainly the following two usage scenarios:
15
15
  ```shell
16
16
  npm i -g @douyinfe/semi-scss-compile
17
17
 
18
- semiScssCompile --foundation="path/to/foundation" --theme="path/to/theme" --output="path/to/output.css" --min=true
18
+ semi-build-scss --foundation="path/to/foundation" --theme="path/to/theme" --output="path/to/output.css" --min=true
19
19
 
20
20
  # or for short
21
21
 
22
- semiScssCompile -f "path/to/foundation" -t "path/to/theme" -o "path/to/output.css" -m true
22
+ semi-build-scss -f "path/to/foundation" -t "path/to/theme" -o "path/to/output.css" -m true
23
23
 
24
24
  ```
25
25
 
@@ -41,7 +41,7 @@ compile(resolve('semi-foundation/'), resolve('semi-theme-default/'), resolve('se
41
41
 
42
42
  ```
43
43
 
44
- ### extend API
44
+ ### Advanced API
45
45
 
46
46
  ```js
47
47
  const {generateScssMap, writeFile, compilerFromScssMap} = require('@douyinfe/semi-scss-compile');
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@douyinfe/semi-scss-compile",
3
- "version": "2.0.1-alpha.2",
3
+ "version": "2.0.4",
4
4
  "description": "compile semi scss to css",
5
5
  "author": "daiqiang@bytedance.com",
6
6
  "license": "MIT",
7
7
  "main": "lib/index.js",
8
8
  "types": "lib/index.d.ts",
9
9
  "bin": {
10
- "semiScssCompile": "lib/bin.js"
10
+ "semi-build-scss": "lib/bin.js"
11
11
  },
12
12
  "files": [
13
13
  "lib",
@@ -32,5 +32,5 @@
32
32
  "@types/sass": "^1.43.0",
33
33
  "typescript": "^4.4.4"
34
34
  },
35
- "gitHead": "0e0b41c6193d7fa207af972a844b2d1cb900f100"
35
+ "gitHead": "1862bcd0e66ea19ffad41916c551c8e958ff7791"
36
36
  }