mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-10 06:44:13 +00:00
Browser extension release script fix
This commit is contained in:
parent
56f7c05ce9
commit
be0b464e48
4 changed files with 6 additions and 4 deletions
2
browser-extension/.gitignore
vendored
2
browser-extension/.gitignore
vendored
|
@ -1,3 +1,5 @@
|
|||
node_modules
|
||||
yarn.lock
|
||||
dist
|
||||
setCreds.sh
|
||||
web-ext-artifacts
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"test": "run-s lint:* build",
|
||||
"build": "webpack --mode=production",
|
||||
"start": "webpack --mode=development --watch",
|
||||
"release:cws": "webstore upload --source=distribution --auto-publish",
|
||||
"release:amo": "web-ext-submit --source-dir distribution",
|
||||
"release:cws": "webstore upload --source=dist --auto-publish",
|
||||
"release:amo": "web-ext-submit --source-dir dist",
|
||||
"release": "run-s build release:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "Responsively Helper",
|
||||
"version": "0.0.1",
|
||||
"description": "An extension to open current browser page in Responsively app",
|
||||
"homepage_url": "http://manojvivek.github.io/responsively-app",
|
||||
"homepage_url": "https://manojvivek.github.io/responsively-app",
|
||||
"manifest_version": 2,
|
||||
"icons": {
|
||||
"128": "logo_128.png",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"path": "desktop-app"
|
||||
},
|
||||
{
|
||||
"path": "website"
|
||||
"path": "browser-extension"
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
|
|
Loading…
Reference in a new issue