Skip to content
This repository was archived by the owner on May 10, 2023. It is now read-only.

Commit d664609

Browse files
Merge pull request #111 from webdevnerdstuff/dev
Fixing missing meta info
2 parents 6c212cc + d894e45 commit d664609

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

build/webpack.release.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const path = require('path');
22
const webpack = require('webpack');
3-
const CopyPlugin = require("copy-webpack-plugin");
3+
const CopyPlugin = require('copy-webpack-plugin');
44
const FileManagerPlugin = require('filemanager-webpack-plugin');
55
const TerserPlugin = require('terser-webpack-plugin');
66
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
@@ -35,7 +35,7 @@ const banner = `${packageName}
3535
@author ${packageJson.author}
3636
@copyright Copyright ${new Date().getFullYear()}, WebDevNerdStuff
3737
@homepage ${packageJson.homepage}
38-
@repository ${packageJson.repository}
38+
@repository ${packageJson.repository.url}
3939
@license https://github.com/webdevnerdstuff/${packageJson.name}/blob/main/LICENSE.md
4040
`;
4141

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "amazon-smile-redirect",
3-
"version": "3.0.3",
3+
"version": "3.0.4",
44
"description": "Amazon Smile Redirect",
55
"main": "index.js",
66
"scripts": {
@@ -10,10 +10,11 @@
1010
"build": "pnpm build:release"
1111
},
1212
"author": "WebDevNerdStuff & Bunnies... lots and lots of bunnies!",
13+
"homepage": "https://amazonsmileredirect.com",
1314
"license": "ISC",
1415
"repository": {
1516
"type": "git",
16-
"url": ""
17+
"url": "https://github.com/webdevnerdstuff/amazon-smile-redirect"
1718
},
1819
"devDependencies": {
1920
"@babel/core": "^7.18.2",

src/manifest.v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Amazon Smile Redirect",
44
"short_name": "ASR",
55
"description": "__MSG_appDesc__",
6-
"version": "3.0.3",
6+
"version": "3.0.4",
77
"author": "__MSG_appAuthor",
88
"homepage_url": "https://github.com/webdevnerdstuff/amazon-smile-redirect",
99
"icons": {

src/manifest.v3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Amazon Smile Redirect",
44
"short_name": "ASR",
55
"description": "__MSG_appDesc__",
6-
"version": "3.0.3",
6+
"version": "3.0.4",
77
"author": "__MSG_appAuthor",
88
"homepage_url": "https://github.com/webdevnerdstuff/amazon-smile-redirect",
99
"icons": {

0 commit comments

Comments
 (0)