Skip to content

Commit

Permalink
Renamed npm scripts, add Vite npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Jul 3, 2024
1 parent 2e95b83 commit 679837f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [5.2.0](https://github.com/userfrosting/userfrosting/compare/5.1.0...5.2.0)
- Renamed npm scripts, add Vite npm scripts

## [5.1.2](https://github.com/userfrosting/userfrosting/compare/5.1.1...5.1.2)
- Fix FontAwesome icons on the about page
Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@
"webpack-notifier": "^1.14.1"
},
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress"
"webpack:server": "encore dev-server --port 9000",
"webpack:dev": "encore dev",
"webpack:watch": "encore dev --watch",
"webpack:build": "encore production --progress",
"vite:dev": "vite",
"vite:build": "vite build"
}
}

0 comments on commit 679837f

Please sign in to comment.