Fixing dependencies
parent
dd0937a401
commit
b2408a9b2d
13
package.json
13
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "webpack-svg-sprite-generator",
|
"name": "webpack-svg-sprite-generator",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "plugin.js",
|
"main": "plugin.js",
|
||||||
"types": "ts/index.d.ts",
|
"types": "ts/index.d.ts",
|
||||||
|
@ -37,12 +37,13 @@
|
||||||
"typescript": "^3.9.7",
|
"typescript": "^3.9.7",
|
||||||
"webpack-cli": "^3.3.12",
|
"webpack-cli": "^3.3.12",
|
||||||
"webpack-dev-server": "^3.11.2",
|
"webpack-dev-server": "^3.11.2",
|
||||||
"xml-parser": "^1.2.1"
|
"xml-parser": "^1.2.1",
|
||||||
|
"webpack": "^5.26.1",
|
||||||
|
"potpack": "^1.0.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"peerDependencies": {
|
||||||
|
"webpack": "^5.x",
|
||||||
"fs-extra": "^9.0.1",
|
"fs-extra": "^9.0.1",
|
||||||
"path": "^0.12.7",
|
"path": "^0.12.7"
|
||||||
"potpack": "^1.0.1",
|
|
||||||
"webpack": "^5.26.1"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
import * as path from "path";
|
import * as path from "path";
|
||||||
import * as SystemFs from "fs-extra";
|
import * as SystemFs from "fs-extra";
|
||||||
import sha1 from "sha1";
|
import sha1 from "sha1";
|
||||||
import util from "util";
|
|
||||||
|
|
||||||
import webpack, {Compiler, Module, RuntimeGlobals} from "webpack";
|
import webpack, {Compiler, Module, RuntimeGlobals} from "webpack";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
|
Loading…
Reference in New Issue