Compare commits
3 Commits
19e15d3fe7
...
1ce43d2c76
Author | SHA1 | Date |
---|---|---|
wpetit | 1ce43d2c76 | |
Benjamin Gaudé | 75213ebe6e | |
Benjamin Gaudé | 6a9c2fd13f |
|
@ -7,7 +7,7 @@ ARG https_proxy=
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y build-essential git bash curl
|
RUN apt-get update && apt-get install -y build-essential git bash curl
|
||||||
|
|
||||||
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \
|
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - \
|
||||||
&& apt-get install -y nodejs
|
&& apt-get install -y nodejs
|
||||||
|
|
||||||
COPY . /src
|
COPY . /src
|
||||||
|
@ -15,7 +15,7 @@ COPY . /src
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
|
|
||||||
RUN cp -f misc/docker/config-patch.txt misc/release/config-patch.txt \
|
RUN cp -f misc/docker/config-patch.txt misc/release/config-patch.txt \
|
||||||
&& npm install \
|
&& npm ci \
|
||||||
&& make ARCH_TARGETS=amd64 release
|
&& make ARCH_TARGETS=amd64 release
|
||||||
|
|
||||||
FROM busybox
|
FROM busybox
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
30
package.json
30
package.json
|
@ -11,21 +11,21 @@
|
||||||
"author": "William Petit <wpetit@cadoles.com>",
|
"author": "William Petit <wpetit@cadoles.com>",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.2.0",
|
"@babel/core": "^7.23.9",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.2.1",
|
"@babel/plugin-proposal-class-properties": "^7.2.1",
|
||||||
"@babel/preset-env": "^7.2.0",
|
"@babel/preset-env": "^7.23.9",
|
||||||
"babel-loader": "^8.0.4",
|
"babel-loader": "^9.1.3",
|
||||||
"bulma": "^0.8.2",
|
"bulma": "^0.9.4",
|
||||||
"bulma-switch": "^2.0.0",
|
"bulma-switch": "^2.0.4",
|
||||||
"css-loader": "^3.5.2",
|
"css-loader": "^6.10.0",
|
||||||
"file-loader": "^6.0.0",
|
"file-loader": "^6.2.0",
|
||||||
"mini-css-extract-plugin": "^0.9.0",
|
"mini-css-extract-plugin": "^2.8.0",
|
||||||
"node-sass": "^4.14.1",
|
"node-sass": "^9.0.0",
|
||||||
"resolve-url-loader": "^3.0.0",
|
"resolve-url-loader": "^5.0.0",
|
||||||
"sass-loader": "^8.0.2",
|
"sass-loader": "^14.1.1",
|
||||||
"stimulus": "^1.1.0",
|
"stimulus": "^3.2.2",
|
||||||
"style-loader": "^1.1.4",
|
"style-loader": "^3.3.4",
|
||||||
"webpack": "^4.25.0",
|
"webpack": "^5.90.3",
|
||||||
"webpack-cli": "^3.1.2"
|
"webpack-cli": "^5.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,8 +64,8 @@ module.exports = {
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new MiniCssExtractPlugin({
|
new MiniCssExtractPlugin({
|
||||||
filename: "/css/[name].css",
|
filename: "./css/[name].css",
|
||||||
chunkFilename: "/css/[id].css"
|
chunkFilename: "./css/[id].css"
|
||||||
})
|
})
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue