Skip to content

Commit

Permalink
Fix typo in upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
brenogazzola committed Aug 21, 2023
1 parent 7f825c2 commit 34e119b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ After you are done you will notice that the install step added various files to

The `./bin/dev` file is a shell script that uses [foreman](https://github.com/ddollar/foreman) and `Procfile.dev` to start two processes in a single terminal: `rails s` and `yarn build`. The latter replaces `webpack-dev-server` for bundling and watching for changes in javascript files.

**The 'build' attribute added to packages.json**
**The 'build' attribute added to package.jsonson**

This is the command that `yarn build` will use to bundle javascript files.

Expand Down Expand Up @@ -63,7 +63,7 @@ module.exports = {
}
```

Then open `packages.json` and add this:
Then open `package.jsonson` and add this:
```json
"babel": {
"presets": [
Expand All @@ -72,7 +72,7 @@ Then open `packages.json` and add this:
}
```

Finally, download [webpackers babel preset](https://github.com/rails/webpacker/blob/master/package/babel/preset.js) file and place it in the same directory as `packages.json` with the name `webpack.babel.js`.
Finally, download [webpackers babel preset](https://github.com/rails/webpacker/blob/master/package/babel/preset.js) file and place it in the same directory as `package.jsonson` with the name `webpack.babel.js`.

**Module resolution**

Expand Down Expand Up @@ -157,7 +157,7 @@ After you are done you will notice that the install step updated some files.

Just like the javascript process, this one will bundle and watch for changes in css files.

**The 'build:css' attribute added to packages.json**
**The 'build:css' attribute added to package.jsonson**

This is the command `yarn build` will use to bundle css files.

Expand Down Expand Up @@ -191,7 +191,7 @@ stylesheets/sources/application/source_1.scss
stylesheets/sources/application/source_2.scss
```

Then adjust the `build` attribute in `packages.json`:
Then adjust the `build` attribute in `package.jsonson`:
```
"build:css": "sass ./app/assets/stylesheets/entrypoints:./app/assets/builds --no-source-map --load-path=node_modules"
```
Expand Down

0 comments on commit 34e119b

Please sign in to comment.