{"library":"start-webpack","title":"start-webpack","type":"library","description":"Webpack task for Start task runner, version 0.3.0. It provides a simple wrapper around webpack 3, intended for use with the Start task runner ecosystem. It was last released in 2017 and no longer maintained. Key differentiators: minimal integration with start-runner, no support for webpack 4+, Node.js >=4 required.","language":"javascript","status":"abandoned","last_verified":"Sat Apr 25","install":{"commands":["npm install start-webpack"],"cli":null},"imports":["import webpack from 'start-webpack'"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/start-runner/webpack","docs":null,"changelog":null,"pypi":null,"npm":"https://www.npmjs.com/package/start-webpack","openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"import Start from 'start';\nimport reporter from 'start-pretty-reporter';\nimport files from 'start-files';\nimport clean from 'start-clean';\nimport webpack from 'start-webpack';\n\nconst start = Start(reporter());\n\nconst config = {\n  entry: './src/index.js',\n  output: {\n    path: __dirname + '/dist',\n    filename: 'bundle.js'\n  }\n};\n\nexport const build = () => start(\n  files('build/'),\n  clean(),\n  webpack(config)\n);","lang":"javascript","description":"Shows how to define a Start task using start-webpack with a basic webpack config.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}