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
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
12 changes: 11 additions & 1 deletion local.builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2"

services:
base:
image: node:12
image: node:16
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand All @@ -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=2

test:
extends:
service: base
Expand Down
10 changes: 5 additions & 5 deletions local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
documentcloud_frontend:
image: node:12
image: node:16
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand All @@ -17,7 +17,7 @@ services:
- www.dev.documentcloud.org

documentcloud_frontend_app:
image: node:12
image: node:16
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand All @@ -32,7 +32,7 @@ services:
- www.dev.documentcloud.org

documentcloud_frontend_embed:
image: node:12
image: node:16
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand All @@ -47,7 +47,7 @@ services:
- www.dev.documentcloud.org

documentcloud_frontend_build:
image: node:12
image: node:16
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand All @@ -62,7 +62,7 @@ services:
- www.dev.documentcloud.org

documentcloud_frontend_analyze:
image: node:12
image: node:16
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand Down
Loading