-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.vite | ||
dist | ||
node_modules | ||
build/*.zip | ||
releases/*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.PHONY: build clean | ||
.PHONY: release clean | ||
|
||
release: | ||
zip -r0 releases/rails_panel.zip dist | ||
|
||
build: | ||
zip -r0 build/rails_panel.zip dist | ||
clean: | ||
rm build/* | ||
rm releases/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
## Development mode | ||
|
||
npm run dev | ||
npm run dev | ||
|
||
## Preview the extension | ||
|
||
npm run build | ||
npm run build | ||
|
||
In Chrome > Plugins > Load unpacked select `dist` directory. | ||
|
||
## Create release for upload to stores | ||
|
||
make release |
File renamed without changes.