Skip to content

Commit

Permalink
feat: init new package and installed deps
Browse files Browse the repository at this point in the history
- init create-webpack-app package
- installed deps
 - plop
 - minimist
  • Loading branch information
maverox committed May 13, 2024
1 parent cd1099a commit f910fe3
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/create-webpack-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# `create-webpack-app`

> TODO: description
## Usage

```js
const createWebpackApp = require("create-webpack-app");

// TODO: DEMONSTRATE API
```
45 changes: 45 additions & 0 deletions packages/create-webpack-app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "create-webpack-app",
"version": "1.0.0",
"description": "CLI for scaffolding webpack projects using default config, framework templates, loader or plugins templates",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webpack/create-webpack-app.git"
},
"homepage": "https://github.com/webpack/webpack-cli/tree/master/packages/create-webpack-app",
"bugs": "https://github.com/webpack/webpack-cli/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"bin": {
"create-webpack-app": "./bin/index.js"
},
"main": "./lib/index.js",
"engines": {
"node": ">=14.15.0"
},
"keywords": [
"webpack",
"cli",
"scaffolding",
"module",
"bundler",
"web",
"frameworks"
],
"files": [
"bin",
"lib",
"!**/*__tests__"
],
"dependencies": {
"minimist": "^1.2.8",
"node-plop": "^0.32.0",
"plop": "^4.0.1"
},
"devDependencies": {},
"peerDependencies": {},
"peerDependenciesMeta": {}
}
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
},
{
"path": "packages/webpack-cli"
},
{
"path": "packages/create-webpack-app"
}
]
}

0 comments on commit f910fe3

Please sign in to comment.