From 89e95b3f143682ed9a006991bacf45c9dcba4818 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 8 Nov 2018 00:43:05 +0800 Subject: remove node_modules --- .../copy-webpack-plugin/dist/utils/promisify.js | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 node_modules/copy-webpack-plugin/dist/utils/promisify.js (limited to 'node_modules/copy-webpack-plugin/dist/utils/promisify.js') diff --git a/node_modules/copy-webpack-plugin/dist/utils/promisify.js b/node_modules/copy-webpack-plugin/dist/utils/promisify.js deleted file mode 100644 index a49fc55b..00000000 --- a/node_modules/copy-webpack-plugin/dist/utils/promisify.js +++ /dev/null @@ -1,26 +0,0 @@ -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -var stat = exports.stat = function stat(inputFileSystem, path) { - return new Promise(function (resolve, reject) { - inputFileSystem.stat(path, function (err, stats) { - if (err) { - reject(err); - } - resolve(stats); - }); - }); -}; - -var readFile = exports.readFile = function readFile(inputFileSystem, path) { - return new Promise(function (resolve, reject) { - inputFileSystem.readFile(path, function (err, stats) { - if (err) { - reject(err); - } - resolve(stats); - }); - }); -}; \ No newline at end of file -- cgit v1.2.3