Merge pull request #433 from standardnotes/fix-ionicons-path

fix: ionicons not found on webpack dev server
This commit is contained in:
Johnny A
2020-07-22 11:18:17 -04:00
committed by GitHub
2 changed files with 11 additions and 3 deletions

View File

@@ -9,7 +9,9 @@
"scripts": {
"start": "webpack-dev-server --progress",
"bundle": "webpack --mode production",
"build": "bundle install && npm ci && bundle exec rails assets:precompile && npm run bundle",
"precompile:assets": "bundle exec rails assets:precompile",
"postinstall": "npm run precompile:assets",
"build": "bundle install && npm ci && npm run precompile:assets && npm run bundle",
"submodules": "git submodule update --init --force --remote",
"test": "karma start karma.conf.js --single-run",
"lint": "eslint --fix app/assets/javascripts/**/*.js"