-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: update development setup (#54)
* chore: update pckages.json * chore: setup github workflows * chore: add editor config * chore: setup assets * fix: load assets from dist directory * chore: update .distignore * chore: ignore language directory except .gitkeep * doc: add unreleased tag * chore: update WP and PHP dependency version * chore: remove unused gulpfile Co-authored-by: Jon Waldstein <[email protected]>
- Loading branch information
1 parent
5156878
commit f855771
Showing
19 changed files
with
20,152 additions
and
2,364 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/.git | ||
.gitignore | ||
|
||
/.idea | ||
/.github | ||
|
||
/tests | ||
/node_modules | ||
/assets/src | ||
/assets/dist/**/*.map | ||
/vendor/bin | ||
/vendor/composer/installers | ||
/vendor/**/*.phar | ||
|
||
.editorconfig | ||
composer.json | ||
composer.lock | ||
package.json | ||
package-lock.json | ||
CHANGELOG.md | ||
README.md | ||
readme.md | ||
webpack.mix.js | ||
|
||
# GH Action files | ||
DOCKER_ENV | ||
docker_tag | ||
output.log |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
tab_width = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.txt] | ||
trim_trailing_whitespace = false |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Build Plugin Pre-Release | ||
|
||
on: | ||
release: | ||
types: [ prereleased ] | ||
|
||
jobs: | ||
build: | ||
uses: impress-org/givewp-github-actions/.github/workflows/pre-release.yml@master | ||
with: | ||
plugin_slug: give-google-analytics | ||
zip_name: give-google-analytics |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Release to GiveWP.com | ||
|
||
on: | ||
release: | ||
types: [ released ] | ||
|
||
jobs: | ||
build: | ||
uses: impress-org/givewp-github-actions/.github/workflows/givewp-release.yml@master | ||
with: | ||
plugin_slug: give-google-analytics | ||
zip_name: give-google-analytics | ||
secrets: | ||
GIVEWP_DOWNLOADS_PATH: ${{ secrets.GIVEWP_DOWNLOADS_PATH }} | ||
GIVEWP_DOWNLOADS_URI: ${{ secrets.GIVEWP_DOWNLOADS_URI }} | ||
GIVEWP_CLOUDFLARE_TOKEN: ${{ secrets.GIVEWP_CLOUDFLARE_TOKEN }} | ||
GIVEWP_CLOUDFLARE_ZONE: ${{ secrets.GIVEWP_CLOUDFLARE_ZONE }} | ||
WEBSITE_DEPLOY_HOST: ${{ secrets.WEBSITE_DEPLOY_HOST }} | ||
WEBSITE_DEPLOY_USER: ${{ secrets.WEBSITE_DEPLOY_USER }} | ||
WEBSITE_DEPLOY_PRIVATE_KEY: ${{ secrets.WEBSITE_DEPLOY_PRIVATE_KEY }} | ||
EDD_PRODUCT_ID: ${{ secrets.EDD_PRODUCT_ID }} | ||
SLACK_ANNOUNCEMENT_WEBHOOK: ${{ secrets.SLACK_ANNOUNCEMENT_WEBHOOK }} |
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 +1,7 @@ | ||
node_modules | ||
|
||
assets/dist | ||
|
||
languages/* | ||
!languages/.gitkeep | ||
|
File renamed without changes.
File renamed without changes
File renamed without changes.
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
This file was deleted.
Oops, something went wrong.
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
Empty file.
Oops, something went wrong.