This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
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
24 changed files
with
150 additions
and
177 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,35 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "[BUG] " | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behaviour: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behaviour** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Developer console output (if applicable):** | ||
If there are console errors relating to the bug, please include screenshot(s) or Gist here. | ||
|
||
**Platform (please complete the following information):** | ||
- OS: [e.g. OS X] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 59] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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: Feature request | ||
about: Suggest an idea for this project | ||
title: "[REQUEST] " | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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 @@ | ||
--- | ||
name: Question | ||
about: Ask a question | ||
title: "[QUESTION] " | ||
labels: question | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your question related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm having difficulty with this feature [...] | ||
|
||
**Additional context** | ||
Add any other context, code snippets, or screenshots about your question here. |
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 |
---|---|---|
|
@@ -83,3 +83,7 @@ $RECYCLE.BIN/ | |
|
||
# Composer | ||
composer.lock | ||
|
||
# Production Assets | ||
assets/scripts | ||
assets/styles |
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,33 @@ | ||
sudo: false | ||
language: php | ||
cache: | ||
directories: | ||
- "$HOME/.composer/cache" | ||
- "$HOME/.yarn" | ||
- "./node_modules" | ||
before_install: | ||
- yarn | ||
jobs: | ||
include: | ||
- stage: lint | ||
php: 5.6 | ||
script: | ||
- "./bin/lint.sh" | ||
- stage: lint | ||
php: 7.2 | ||
script: | ||
- "./bin/lint.sh" | ||
- stage: deploy | ||
php: 7.2 | ||
script: | ||
- "./bin/build.sh" | ||
if: branch = master | ||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: ZJk3Z638wSch+7E24kRcryHxKeb+kLQ4eb8FTPoGMeawXK8e34EbapXd5Cw0jnlG7Oi5lBVilmzXYqdjx/nA/nB2XRElXaveHGfKe77fRLDtbVxW1fkJiraQxy1FQ1shDmf1DqI/RtA95zvasqXjVNzf66dqSUmhGMu/Mdypn5RzoDz3wkpWExP+Jhw/zR+s957PYcNKXWCdvfyB6gq14ZHI5zuqrRcsPjnvGCTUW5AXFOhr1IxbdjICAo/n/s3RZluL5lvOsHRAdUBX/q32A5m2VRd5IvpRoBXnC/lfrfsvr2nGwi7LeLb/nNoX09Ysdcc1I6CQ6aS/RYJBbTcJbbLIn8GPZWWxfmzc59QqOmXLZVISRJk3b80Tgn++CxaI79qaIM0vB++AVsrBEXI6pVpSz3H4GcI6+9XJ2WvuYZknS4tkGypVvGA9gcStzjqdWmtlgotc1XhyuxKAKFJhxUdwil49CR/MKyRG6SDXK0AiSRfLhGzoqWE7HCAUcNpGk6N3cR/0ZPJszbYg2p7SmOLBdrzymlHjdeNtByKSxPU4usyXWiRsB2KlDTbISe+ByDSIXhazw4ZZOcAOxk+YQZhSuCuWQDyC7ca8AsU5lapLtWHZwydNbtKzlrOqvKpR5DovxpdJP8ir2qpSCBhhUc4yv3zPF8inUkQ84IMyCCc= | ||
file: "../benenson.zip" | ||
skip_cleanup: true | ||
draft: true | ||
on: | ||
repo: bigbitecreative/benenson |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
#!/usr/bin/env sh | ||
|
||
yarn && yarn build && zip -r ../benenson.zip . \ | ||
-x .\* \ | ||
-x CODE_OF_CONDUCT.md \ | ||
-x ISSUE_TEMPLATE.md \ | ||
-x bin/\* \ | ||
-x gulp/\* \ | ||
-x gulpfile.js \ | ||
-x node_modules/\* \ | ||
-x package.json \ | ||
-x phpcs.xml \ | ||
-x pull_request_template.md \ | ||
-x src/\* \ | ||
-x webpack.config.js \ | ||
-x yarn.lock |
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,2 @@ | ||
#!/usr/bin/env sh | ||
composer global require dealerdirect/phpcodesniffer-composer-installer wp-coding-standards/wpcs automattic/vipwpcs && yarn lint |
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 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 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 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 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,7 +1,7 @@ | ||
Fixes # | ||
|
||
## Proposed Changes | ||
- | ||
- | ||
- | ||
|
||
- | ||
- | ||
- | ||
## Linked Issues | ||
- Fixes # |
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,15 +1,7 @@ | ||
import App from '../App'; | ||
import Attribution from '../modules/Attribution'; | ||
|
||
// Mock the module calls. | ||
jest.mock('../modules/Attribution', () => jest.fn()); | ||
import App from '../app'; | ||
|
||
describe('App', () => { | ||
beforeAll(() => { | ||
App(); | ||
}); | ||
|
||
test('Attribution has been called', () => { | ||
expect(Attribution.mock.calls.length).toBe(1); | ||
}); | ||
}); |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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