Skip to content

Commit

Permalink
updated nuxt 2.14.12, added nuxt sitemap, packages updates, remove vu…
Browse files Browse the repository at this point in the history
…e-plyr plyr
  • Loading branch information
yvess committed Feb 9, 2021
1 parent 8ef25c3 commit df8e543
Show file tree
Hide file tree
Showing 4 changed files with 17,784 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NUXT_VERSION=2.14.7c
NUXT_VERSION_PREV=2.14.7b
NUXT_VERSION=2.14.12
NUXT_VERSION_PREV=2.14.7c

.PHONY: all

Expand Down
8 changes: 7 additions & 1 deletion docker/nuxt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,17 @@ 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
# nuxt/node update added vee-validate, updated corejs
COPY ./package/03/package.json ./package/03/yarn.lock /opt/nuxt/
RUN --mount=type=cache,target=/tmp/yarn_cache \
yarn install --ignore-optional

# nuxt update packages, remove plyr vue-plyr, add nuxt sitemap
COPY ./package/04/package.json ./package/04/yarn.lock /opt/nuxt/
RUN apk add --no-cache rsync bash
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
68 changes: 68 additions & 0 deletions docker/nuxt/package/04/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"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/sitemap": "^2.4.0",
"@nuxtjs/style-resources": "^1.0.0",
"body-parser": "^1.19.0",
"cookie-universal-nuxt": "^2.1.4",
"core-js": "3",
"cors": "^2.8.5",
"date-fns": "^2.14.0",
"express": "^4.17.1",
"get-graphql-schema": "^2.1.2",
"nanoid": "^3.1.20",
"node-sass": "^4.14.1",
"nuxt": "^2.14.6",
"nuxt-buefy": "^0.4.4",
"nuxt-i18n": "^6.13.12",
"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-scrollactive": "^0.9.3",
"vue2-google-maps": "^0.10.7"
},
"devDependencies": {
"@ava/babel": "^1.0.0",
"@babel/runtime-corejs3": "^7.12.5",
"@nuxtjs/eslint-config": "5.0.0",
"@nuxtjs/eslint-module": "3.0.2",
"@vue/test-utils": "^1.0.0-beta.27",
"ava": "^3.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "4.1.0",
"browser-env": "^3.2.5",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-nuxt": "2.0.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "2.2.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "3.0.0"
}
}
Loading

0 comments on commit df8e543

Please sign in to comment.