Skip to content

Commit 66bdb45

Browse files
author
Martynas Žilinskas
authored
v3.1.0
v3.1.0
2 parents 0cf28e6 + 1e93b2a commit 66bdb45

9 files changed

Lines changed: 2302 additions & 971 deletions

File tree

.ci/build-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pool:
77
steps:
88
- task: NodeTool@0
99
inputs:
10-
versionSpec: "10.x"
10+
versionSpec: "12.x"
1111
displayName: "Install Node.js"
1212

1313
- script: |

.ci/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pool:
77
steps:
88
- task: NodeTool@0
99
inputs:
10-
versionSpec: "10.x"
10+
versionSpec: "12.x"
1111
displayName: "Install Node.js"
1212

1313
- script: |

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,18 @@ $ scss-bundle -h
5555

5656
Config file properties can be overridden with CLI flags.
5757

58-
| CLI Flag | Bundler options | Type | Description | Values | Default |
59-
| --------------------------------------- | ------------------------ | -------- | -------------------------------------------------------------------------------- | ------------------------------------------ | ------- |
60-
| -p, --project \<path\> | | string | Project location where `scss-bundle.config.json` and `node_modules` are located. | | _cwd_ |
61-
| -e, --entryFile \<path\> <sup>`*`</sup> | entryFile <sup>`*`</sup> | string | Bundle entry file location. | | |
62-
| -o, --outFile \<path\> <sup>`*`</sup> | outFile <sup>`*`</sup> | string | Bundle output location. | | |
63-
| --rootDir \<path\> | rootDir | string | Specifies the root directory of input files. | | |
64-
| -w, --watch [boolean] | watch | boolean | Watch files for changes. Works with `rootDir`. | | |
65-
| --ignoreImports \<list\> | ignoreImports | string[] | Ignore resolving import content by matching a regular expression. | | |
66-
| --includePaths \<list\> | includePaths | string[] | Include paths for resolving imports. | | |
67-
| --dedupeGlobs \<list\> | dedupeGlobs | string[] | Files that will be emitted in a bundle once. | | |
68-
| --logLevel \<level\> | logLevel | string | Console log level. | silent, error, warning, info, debug, trace | info |
58+
| CLI Flag | Bundler options | Type | Description | Values | Default |
59+
| --------------------------------------- | ------------------------ | -------- | ----------------------------------------------------------------- | ------------------------------------------ | ------- |
60+
| -c, --config \<path\> | | string | Configuration file location. | | |
61+
| -p, --project \<path\> | project | string | Project location where `node_modules` is located. | | |
62+
| -e, --entryFile \<path\> <sup>`*`</sup> | entryFile <sup>`*`</sup> | string | Bundle entry file location. | | |
63+
| -o, --outFile \<path\> <sup>`*`</sup> | outFile <sup>`*`</sup> | string | Bundle output location. | | |
64+
| --rootDir \<path\> | rootDir | string | Specifies the root directory of input files. | | |
65+
| -w, --watch [boolean] | watch | boolean | Watch files for changes. Works with `rootDir`. | | |
66+
| --ignoreImports \<list\> | ignoreImports | string[] | Ignore resolving import content by matching a regular expression. | | |
67+
| --includePaths \<list\> | includePaths | string[] | Include paths for resolving imports. | | |
68+
| --dedupeGlobs \<list\> | dedupeGlobs | string[] | Files that will be emitted in a bundle once. | | |
69+
| --logLevel \<level\> | logLevel | string | Console log level. | silent, error, warning, info, debug, trace | info |
6970

7071
`*` - Required
7172

0 commit comments

Comments
 (0)