Skip to content

Commit

Permalink
update to nuxt 2.14.6 and added elasticsearch indexer startup scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
yvess committed Sep 21, 2020
1 parent b3ea950 commit ef3ffb1
Show file tree
Hide file tree
Showing 7 changed files with 13,770 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NUXT_VERSION=2.14.5a
NUXT_VERSION=2.14.6

.PHONY: all

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

# nuxt/node layer 02
COPY ./package/01/package.json ./package/01/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
61 changes: 61 additions & 0 deletions docker/nuxt/package/02/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"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.3.31",
"nuxt-i18n": "^6.13.12",
"plyr": "^3.6.2",
"raw-loader": "^4.0.1",
"rss-parser": "^3.8.0",
"sass-loader": "^8.0.2",
"v-runtime-template": "^1.10.0",
"vue-affix": "^0.5.2",
"vue-number-animation": "^1.0.5",
"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 ef3ffb1

Please sign in to comment.