Skip to content

Commit bde51fe

Browse files
authored
fix: include CSS assets in the install package (#885)
1 parent de09cc8 commit bde51fe

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

add-on/manifest.common.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_manifest_extensionName__",
44
"short_name": "__MSG_manifest_shortExtensionName__",
5-
"version": "2.12.0",
5+
"version": "2.12.1",
66
"description": "__MSG_manifest_extensionDescription__",
77
"homepage_url": "https://github.com/ipfs-shipyard/ipfs-companion",
88
"author": "IPFS Community",

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,15 @@
6161
"ci:build": "./ci/update-manifest.sh && npx [email protected] build",
6262
"ci:test": "npx [email protected] test",
6363
"ci:lint": "npx [email protected] lint",
64-
"beta-build": "docker build -t ipfs-companion-beta-build --build-arg USER_ID=$(id -u ${USER}) --build-arg GROUP_ID=$(id -g ${USER}) . && mkdir -p build && docker run --rm -it --net=host -e RELEASE_CHANNEL=beta -v $(pwd)/build:/home/node/app/build ipfs-companion-beta-build yarn ci:build",
65-
"release-build": "docker build -t ipfs-companion-release-build --build-arg USER_ID=$(id -u ${USER}) --build-arg GROUP_ID=$(id -g ${USER}) . && mkdir -p build && docker run --rm -it --net=host -e RELEASE_CHANNEL=stable -v $(pwd)/build:/home/node/app/build ipfs-companion-release-build yarn ci:build",
64+
"beta-build": "docker rmi -f ipfs-companion-beta-build && docker build -t ipfs-companion-beta-build --build-arg USER_ID=$(id -u ${USER}) --build-arg GROUP_ID=$(id -g ${USER}) . && mkdir -p build && docker run --rm -it --net=host -e RELEASE_CHANNEL=beta -v $(pwd)/build:/home/node/app/build ipfs-companion-beta-build yarn ci:build",
65+
"release-build": "docker rmi -f ipfs-companion-release-build && docker build -t ipfs-companion-release-build --build-arg USER_ID=$(id -u ${USER}) --build-arg GROUP_ID=$(id -g ${USER}) . && mkdir -p build && docker run --rm -it --net=host -e RELEASE_CHANNEL=stable -v $(pwd)/build:/home/node/app/build ipfs-companion-release-build yarn ci:build",
6666
"dev-build": "npx [email protected] && npx [email protected] build",
6767
"yarn-build": "npm run dev-build"
6868
},
6969
"private": true,
7070
"preferGlobal": false,
7171
"resolutions": {
72+
"v8": "npm:[email protected]",
7273
"@hapi/hapi": "18.4.0",
7374
"iso-stream-http": "0.1.2",
7475
"stream-http": "npm:[email protected]",

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const commonConfig = {
6767
test: /\.(png|jpe?g|gif|svg|eot|otf|ttf|woff|woff2)$/i,
6868
loader: 'file-loader',
6969
options: {
70-
name: '[path][name].[ext]'
70+
name: 'assets/[name].[ext]'
7171
}
7272
},
7373
{

0 commit comments

Comments
 (0)