Skip to content

Commit

Permalink
added vue-affix and vue-scrollactive
Browse files Browse the repository at this point in the history
  • Loading branch information
yvess committed Jun 1, 2020
1 parent aa6f397 commit ee2437d
Show file tree
Hide file tree
Showing 5 changed files with 13,171 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NUXT_VERSION=0.2.1
NUXT_VERSION=0.2.2

.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 @@ -29,6 +29,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 / added scrollactive / affix
COPY ./package/02/package.json ./package/02/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
ENV PATH=$PATH:/node_modules/.bin
Expand Down
48 changes: 48 additions & 0 deletions docker/nuxt/package/02/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"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.0-rc19",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/style-resources": "^1.0.0",
"get-graphql-schema": "^2.1.2",
"node-sass": "^4.14.1",
"nuxt": "^2.0.0",
"nuxt-buefy": "^0.3.2",
"sass-loader": "^8.0.2",
"vue-affix": "^0.5.2",
"vue-scrollactive": "^0.9.3"
},
"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 ee2437d

Please sign in to comment.