Skip to content

Commit

Permalink
add vee-validate
Browse files Browse the repository at this point in the history
  • Loading branch information
yvess committed Nov 22, 2020
1 parent 69fb68e commit 96cb7a2
Show file tree
Hide file tree
Showing 4 changed files with 17,152 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
NUXT_VERSION=2.14.7
NUXT_VERSION=2.14.7a
NUXT_VERSION_PREV=2.14.7

.PHONY: all

build:
cd docker && DOCKER_BUILDKIT=1 docker build -t taywa/nuxt:$(NUXT_VERSION) nuxt
cd docker && DOCKER_BUILDKIT=1 \
docker build nuxt \
--cache-from taywa/nuxt:$(NUXT_VERSION_PREV) \
--build-arg BUILDKIT_INLINE_CACHE=1 -t taywa/nuxt:$(NUXT_VERSION)

push:
docker push taywa/nuxt:$(NUXT_VERSION)
5 changes: 5 additions & 0 deletions docker/nuxt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ COPY ./package/02/package.json ./package/02/yarn.lock /opt/nuxt/
RUN --mount=type=cache,target=/tmp/yarn_cache \
yarn install --ignore-optional

# nuxt/node update added vee-validate
COPY ./package/03/package.json ./package/03/yarn.lock /opt/nuxt/
RUN --mount=type=cache,target=/tmp/yarn_cache \
yarn install --ignore-optional

COPY s6/etc/services.d /etc/services.d
COPY s6/etc/cont-init.d /etc/cont-init.d
ENTRYPOINT ["/init"]
Expand Down
65 changes: 65 additions & 0 deletions docker/nuxt/package/03/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"name": "nuxt",
"version": "1.0.0",
"description": "nuxt image",
"author": "Yves Serrano",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "ava",
"test:unit": "cross-env TEST=unit ava ./test/specs/**/*",
"test:e2e": "cross-env TEST=e2e ava ./test/e2e/**/*"
},
"dependencies": {
"@nuxtjs/apollo": "4.0.1-rc.3",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/proxy": "^2.0.0",
"@nuxtjs/style-resources": "^1.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"date-fns": "^2.14.0",
"express": "^4.17.1",
"get-graphql-schema": "^2.1.2",
"node-sass": "^4.14.1",
"nuxt": "^2.14.6",
"nuxt-buefy": "^0.4.4",
"nuxt-i18n": "^6.13.12",
"plyr": "^3.6.2",
"raw-loader": "^4.0.1",
"rss-parser": "^3.8.0",
"sass-loader": "^8.0.2",
"update": "^0.7.4",
"v-runtime-template": "^1.10.0",
"vee-validate": "^3.4.5",
"vue-affix": "^0.5.2",
"vue-matomo": "^3.14.0-0",
"vue-number-animation": "^1.0.5",
"vue-pannellum": "^0.5.1",
"vue-plyr": "^6.0.4",
"vue-scrollactive": "^0.9.3",
"vue2-google-maps": "^0.10.7"
},
"devDependencies": {
"@ava/babel": "^1.0.0",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"ava": "^3.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"browser-env": "^3.2.5",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^2.0.0"
}
}
Loading

0 comments on commit 96cb7a2

Please sign in to comment.