Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial Work toward Webpack 5 with Svue #89

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
tweak makefile with npm list
  • Loading branch information
thadk committed Feb 22, 2022
commit dc2ab1f54fefbf6e30374b4da48765375d4c31db
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
install:
docker volume create nodemodules && docker-compose -f local.builder.yml run --rm install

install-ci:
docker volume create nodemodules && docker-compose -f local.builder.yml run --rm install-ci


npmlist:
docker-compose -f local.builder.yml run --rm npmlist

build:
docker-compose -f local.builder.yml run --rm build

Expand Down
10 changes: 10 additions & 0 deletions local.builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ services:
service: base
command: npm i

install-ci:
extends:
service: base
command: npm ci

npmlist:
extends:
service: base
command: npm list --depth=0

test:
extends:
service: base
Expand Down
Loading