remove-comments-plugin 1.0.0-beta-2 → 1.0.0-beta-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/README.md +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -91,13 +91,13 @@ const cleanHtmlCode = removeHtmlComments(htmlCode);
|
|
|
91
91
|
|
|
92
92
|
## Configuration Options
|
|
93
93
|
|
|
94
|
-
| Option | Description | Default |
|
|
95
|
-
| ------ | ----------- | ------- |
|
|
96
|
-
| distPath | The directory path to process | `./dist` |
|
|
97
|
-
| fileTypes | An array of file extensions to process | `['.js']` |
|
|
98
|
-
| fileIncludePatterns | An array of filename patterns to filter files | `['chunk-vendors', 'app']` |
|
|
99
|
-
| versionPatterns | An array of version patterns to filter comments | `['Vue.js', 'vuex']` |
|
|
100
|
-
| verbose | Whether to print detailed logs | `true` |
|
|
94
|
+
| Option | Short | Description | Default |
|
|
95
|
+
| ------ | ----- | ----------- | ------- |
|
|
96
|
+
| distPath | -d | The directory path to process | `./dist` |
|
|
97
|
+
| fileTypes | -t | An array of file extensions to process | `['.js']` |
|
|
98
|
+
| fileIncludePatterns | -p | An array of filename patterns to filter files | `['chunk-vendors', 'app']` |
|
|
99
|
+
| versionPatterns | -V | An array of version patterns to filter comments | `['Vue.js', 'vuex']` |
|
|
100
|
+
| verbose | -v | Whether to print detailed logs | `true` |
|
|
101
101
|
|
|
102
102
|
## Common Issues and Solutions
|
|
103
103
|
|