@caweb/a11y-webpack-plugin 2.0.3 → 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/index.js +0 -3
  2. package/package.json +2 -1
package/index.js CHANGED
@@ -75,9 +75,6 @@ class CAWebA11yWebpackPlugin {
75
75
  devServer.open.target.push(`${auditUrl}${this.config.outputFolder}/${this.config.outputFilename}.html`)
76
76
  }
77
77
 
78
- // we always make sure the output folder is cleared
79
- fs.rmSync( staticDir.directory, { recursive: true, force: true } );
80
-
81
78
  // Hot Module Replacement
82
79
  // if( compiler?.options?.devServer?.hot ){
83
80
  // // we create a blank file for the hot update to compile on our page.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/a11y-webpack-plugin",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "CAWebPublishing Webpack Plugin to run Accessibility Scans",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -35,6 +35,7 @@
35
35
  "webpack"
36
36
  ],
37
37
  "dependencies": {
38
+ "@caweb/webpack": "^1.6.3",
38
39
  "accessibility-checker": "^4.0.10",
39
40
  "check-valid-url": "^0.1.0"
40
41
  },