UNPKG

webpack-watched-glob-entries-plugin

Version:

Webpack plugin to glob directories for entry files and also watch them for changes

49 lines (48 loc) 1.83 kB
{ "name": "webpack-watched-glob-entries-plugin", "version": "3.2.0", "description": "Webpack plugin to glob directories for entry files and also watch them for changes", "main": "index.js", "repository": { "type": "git", "url": "git+https://github.com/Milanzor/webpack-watched-glob-entries-plugin.git" }, "author": "Milan van As <milanvanas@gmail.com>", "license": "MIT", "scripts": { "test": "npm run cleanup && npm run test:main && npm run cleanup && npm run test:basename && npm run cleanup && npm run test:multiplefiletypes && npm run cleanup", "test:main": "npm run build:main && mocha ./test/tests/output.test.js", "build:main": "webpack --config test/webpack.config.js", "watch:main": "npm run build:main --watch", "test:basename": "npm run build:basename && mocha ./test/tests/output.basename.test.js", "build:basename": "webpack --config test/webpack.basename.config.js", "watch:basename": "npm run build:basename --watch", "test:multiplefiletypes": "npm run build:multiplefiletypes && mocha ./test/tests/output.multiplefiletypes.test.js", "build:multiplefiletypes": "webpack --config test/webpack.multiplefiletypes.config.js", "watch:multiplefiletypes": "npm run build:multiplefiletypes --watch", "cleanup": "rimraf ./test/dist" }, "private": false, "dependencies": { "glob": "^13.0.6", "glob-parent": ">=6.0.2" }, "engines": { "node": ">=18.0.0 <=25" }, "devDependencies": { "chai": "^6.2.2", "css-loader": "^7.1.4", "mini-css-extract-plugin": "^2.10.0", "mocha": "^12.0.0-beta-2", "rimraf": "^6.1.3", "sass": "^1.97.3", "sass-loader": "^16.0.7", "style-loader": "^4.0.0", "webpack": "^5.105.4", "webpack-cli": "^6.0.1" }, "optionalDependencies": { "fsevents": "^2.3.3" } }