-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from bigbite/release/0.0.1
`release/0.0.1` to `main`
- Loading branch information
Showing
49 changed files
with
20,893 additions
and
1 deletion.
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,29 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
project: bigbite/[email protected] | ||
|
||
jobs: | ||
build: | ||
executor: | ||
name: project/default | ||
php: '8.2' | ||
steps: | ||
- checkout | ||
- project/setup | ||
- project/composer-install | ||
- project/phpcs | ||
- project/npm-install | ||
- project/npm-build | ||
- project/phpstan: | ||
memory_limit: '512M' | ||
- project/create-build | ||
|
||
workflows: | ||
workflow: | ||
jobs: | ||
- build: | ||
context: bigbite | ||
filters: | ||
branches: | ||
ignore: /^.*-built$/ |
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,24 @@ | ||
# npm | ||
|
||
node_modules | ||
package-lock.json | ||
package.json | ||
|
||
# composer | ||
|
||
composer.lock | ||
composer.json | ||
|
||
# build tools | ||
|
||
src | ||
.phpcs.xml.dist | ||
webpack.config.js | ||
|
||
# other | ||
|
||
.gitignore | ||
vendor | ||
.github | ||
.node-version | ||
phpstan.neon |
Validating CODEOWNERS rules …
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 @@ | ||
* @chrishbite @jaymcp @bigbite/lead-engineers |
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,6 @@ | ||
node_modules/ | ||
vendor/ | ||
dist/ | ||
|
||
.DS_Store | ||
inc/asset-settings.php |
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 @@ | ||
v22.3.0 |
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,4 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="Big Bite Image Comparison Rules"> | ||
<rule ref="./vendor/bigbite/phpcs-config/BigBite" /> | ||
</ruleset> |
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,3 @@ | ||
# image-comparison | ||
# Image Comparison | ||
|
||
Display two images in a comparison state. |
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,20 @@ | ||
{ | ||
"name": "bigbite/image-comparison", | ||
"description": "Display two images in a comparison state.", | ||
"type": "wordpress-plugin", | ||
"config": { | ||
"preferred-install": "dist", | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
}, | ||
"require-dev": { | ||
"bigbite/phpcs-config": "^2.0", | ||
"phpstan/phpstan": "^1.10", | ||
"szepeviktor/phpstan-wordpress": "^1.3" | ||
}, | ||
"scripts": { | ||
"phpcs": "./vendor/bin/phpcs .", | ||
"phpstan": "@php ./vendor/bin/phpstan --memory-limit=512M" | ||
} | ||
} |
Oops, something went wrong.