Skip to content

Commit b0f4a0f

Browse files
committed
chore: addon -> scaffold
1 parent 82c9ea8 commit b0f4a0f

File tree

10 files changed

+30
-1364
lines changed

10 files changed

+30
-1364
lines changed

INIT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Follow given steps to locally setup `webpack-cli init` by installing dependencie
1818
$ npm install --save-dev webpack webpack-cli
1919
```
2020

21-
3. Install `@webpack-cli/init` package to add init addon
21+
3. Install `@webpack-cli/init` package to add init scaffold
2222

2323
```shell
2424
$ npm install --save-dev @webpack-cli/init
@@ -32,7 +32,7 @@ Follow following steps to setup `webpack-cli init` globally:
3232
$ npm install -g webpack webpack-cli
3333
```
3434

35-
2. Install `@webpack-cli/init` package to add init addon
35+
2. Install `@webpack-cli/init` package to add init scaffold
3636
```shell
3737
$ npm install -g @webpack-cli/init
3838
```

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ You will answer many questions when running the `init` so webpack CLI can provid
6262

6363
## webpack CLI Scaffolds
6464

65-
With v3 of webpack CLI, we introduced scaffolding as an integral part of the CLI. Our goal is to simplify the creation of webpack configurations for different purposes. Additionally, sharing such solutions with the community is beneficial and with webpack Addon's we want to allow this. We provide `webpack-scaffold` as a utility suite for creating these add-ons. It contains functions that could be of use for creating an addon yourself.
65+
With v3 of webpack CLI, we introduced scaffolding as an integral part of the CLI. Our goal is to simplify the creation of webpack configurations for different purposes. Additionally, sharing such solutions with the community is beneficial and with webpack webpack's we want to allow this. We provide `webpack-scaffold` as a utility suite for creating these add-ons. It contains functions that could be of use for creating an scaffold yourself.
6666

67-
You can read more about [Scaffolding](./SCAFFOLDING.md) or check out the example project [How do I compose a webpack-addon?](https://github.com/ev1stensberg/webpack-addons-demo).
67+
You can read more about [Scaffolding](./SCAFFOLDING.md) or check out the example project [How do I compose a webpack-scaffold?](https://github.com/evenstensberg/webpack-scaffold-demo).
6868

6969
## Contributing and Internal Documentation
7070

SCAFFOLDING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ Before writing a `webpack-cli` scaffold, think about what you're trying to achie
1010

1111
## webpack-scaffold
1212

13-
`webpack-scaffold` is a utility suite for creating addons. It contains functions that could be of use for creating an addon yourself.
13+
`webpack-scaffold` is a utility suite for creating scaffolds. It contains functions that could be of use for creating an scaffold yourself.
1414

1515
## webpack-scaffold-yourpackage
1616

1717
In order for `webpack-cli` to compile your package, it must be available on npm or on your local filesystem. If you are curious about how you can create your very own `scaffold`, please read [How do I compose a
18-
webpack-addon?](https://github.com/ev1stensberg/webpack-addons-demo).
18+
webpack-scaffold?](https://github.com/evenstensberg/webpack-scaffold-demo).
1919

2020
If the package is on npm, its name must have a prefix of `webpack-scaffold`.
2121

2222
If the package is on your local filesystem, it can be named whatever you want. Pass the path to the package.
2323

2424
## API
2525

26-
To create an `addon`, you must create a [`yeoman-generator`](http://yeoman.io/authoring/). Because of that, you can optionally extend your generator to include methods from the [Yeoman API](http://yeoman.io/learning/). Its worth noting that we support all the properties of a regular webpack configuration. In order for us to do this, there's a thing you need to remember.
26+
To create a `scaffold`, you must create a [`yeoman-generator`](http://yeoman.io/authoring/). Because of that, you can optionally extend your generator to include methods from the [Yeoman API](http://yeoman.io/learning/). Its worth noting that we support all the properties of a regular webpack configuration. In order for us to do this, there's a thing you need to remember.
2727

2828
Objects are made using strings, while strings are made using double strings. This means that in order for you to create an string, you have to wrap it inside another string for us to validate it correctly.
2929

0 commit comments

Comments
 (0)