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.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. 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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remove-comments-plugin",
3
- "version": "1.0.0-beta-2",
3
+ "version": "1.0.0-beta-3",
4
4
  "description": "A tool to remove comments from JavaScript, CSS, and HTML files",
5
5
  "main": "remove-comments.min.js",
6
6
  "bin": {