Skip to content

Commit

Permalink
Merge pull request #73 from Codeinwp/development
Browse files Browse the repository at this point in the history
Two new prebuilt demos 
RTL compatibility
Fixed styling issues
Basic WooCommerce support
Added Git hooks
  • Loading branch information
rodica-andronache authored Oct 4, 2018
2 parents b829073 + 1050452 commit e2822bf
Show file tree
Hide file tree
Showing 115 changed files with 20,971 additions and 3,560 deletions.
24 changes: 24 additions & 0 deletions .commitlintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const Configuration = {
extends: [ '@commitlint/config-conventional' ],
rules: {
'type-enum': [
2,
'always',
[
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test'
]
]
}
};

module.exports = Configuration;
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Bug report
about: Report a bug so we can get to squashing it.

---

### Description:
<!-- Describe the bug in a clear and concise way. -->

### How to reproduce:
<!-- Describe the steps needed to reproduce this. -->
1.
2.
3.

### Expected behaviour:

### Current behaviour:

### Reference:
<!-- Screenshots and links that show the bug -->

### Technical info
* WordPress version: x.x.x
* Theme version: x.x.x
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Feature request
about: Suggest a feature that we can implement.

---

### Description:
<!-- Describe the requested feature in a clear and concise way. -->

### Alternatives:
<!-- If we don't implement this feature, what would be the best alternatives to achieve the same functionality? -->
18 changes: 18 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
### Summary
<!-- Please describe the changes you made. -->

### Will affect visual aspect of the product
<!-- Will eyepatch be affected? -->
YES/NO

### Screenshots <!-- if applicable -->

### Test instructions
<!-- Describe how this pull request can be tested. -->

-
-

<!-- Issues that this pull request closes. -->
Closes #.
<!-- Should look like this: `Closes #1, #2, #3.` . -->
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ vendor
bin
composer.lock
**/*.js.map
**/*.css.map
**/*.css.map
**/.DS_Store
6 changes: 5 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ module.exports = function ( grunt ) {

var loader = require( 'load-project-config' ),
config = require( 'grunt-theme-fleet' );
config = config();
config = config();

config.files.js.push( '!inc/admin/onboarding/assets/js/bundle.js' );
config.files.js.push( '!inc/admin/onboarding/webpack.config.js' );
config.files.js.push( '!inc/admin/onboarding/node_modules/**/*' );
config.files.js.push( '!**/node_modules/**/*' );

config.files.js.push( '!**/vendor/**/*' );
config.files.php.push( '!**/vendor/**/*' );
config.files.css.push( '!**/vendor/**/*' );

//Task mapping.
config.taskMap.sass = 'grunt-contrib-sass';
config.taskMap.watch = 'grunt-contrib-watch';
Expand Down
Loading

0 comments on commit e2822bf

Please sign in to comment.