-
Notifications
You must be signed in to change notification settings - Fork 9
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
42 changed files
with
1,526 additions
and
729 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,3 +1,5 @@ | ||
.DS_Store | ||
dist/ | ||
tmp | ||
config.codekit | ||
npm-debug.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
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
Submodule build
updated
4 files
+90 −20 | gulp-git-contributors.js | |
+3 −19 | gulpfile.js | |
+37 −0 | score/code-scorer.js | |
+15 −0 | score/decay.js |
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,78 +1,80 @@ | ||
module.exports = { | ||
slug: 'siteorigin-north', | ||
jsMinSuffix: '.min', | ||
// contributors: { | ||
// src: [ | ||
// '**/*', | ||
// '!{build,build/**}', // Ignore build/ submodule | ||
// '!{design,design/**}', // Ignore design/ and contents | ||
// '!{inc/settings,inc/settings/**}', // Ignore settings submodule | ||
// '!{inc/panels-lite,inc/panels-lite/**}', // Ignore panels-lite submodule | ||
// '!{languages,languages/**}', // Ignore languages | ||
// '!{tests,tests/**}', // Ignore tests/ and contents if any | ||
// '!{tmp,tmp/**}' // Ignore tmp/ and contents if any | ||
// ], | ||
// format: 'php', | ||
// skipCommits: [], | ||
// }, | ||
version: { | ||
src: [ | ||
'functions.php', | ||
'readme.txt' | ||
] | ||
}, | ||
sass: { | ||
src: [ | ||
'sass/**/*.scss', | ||
], | ||
include: [ | ||
'sass', | ||
], | ||
external: { | ||
src: [ | ||
'inc/settings/css/**/*.scss', | ||
], | ||
include: [ | ||
'inc/settings/css' | ||
], | ||
} | ||
}, | ||
less: { | ||
src: [], | ||
include:[], | ||
external: { | ||
src: [ | ||
'inc/panels-lite/css/**/*.less', | ||
], | ||
include: [ | ||
'inc/panels-lite/css', | ||
], | ||
}, | ||
}, | ||
js: { | ||
src: [ | ||
'js/**/*.js', | ||
'inc/settings/js/**/*.js', | ||
'inc/panels-lite/js/**/*.js', | ||
'!{node_modules,node_modules/**}', // Ignore node_modules/ and contents | ||
'!{tests,tests/**}', // Ignore tests/ and contents | ||
'!{tmp,tmp/**}' // Ignore tmp/ and contents | ||
] | ||
}, | ||
copy: { | ||
src: [ | ||
'**/!(*.js|*.scss|*.md|style.css|woocommerce.css)', // Everything except .js and .scss files | ||
'!{build,build/**}', // Ignore build/ and contents | ||
'!{sass,sass/**}', // Ignore sass/ and contents | ||
'inc/settings/chosen/*.js', // Ensure necessary .js files ignored in the first glob are copied | ||
'!{inc/settings/bin,inc/settings/bin/**}', // Ignore settings/bin/ and contents | ||
'!{inc/settings/README.md}', // Ignore settings/README.md | ||
'!{tests,tests/**}', // Ignore tests/ and contents | ||
'!{tmp,tmp/**}', // Ignore tmp/ and contents | ||
'!phpunit.xml', // Not the unit tests configuration file. (If there is one.) | ||
'!functions.php', // Not the functions .php file. It is copied by the 'version' task. | ||
'!readme.txt', // Not the readme.txt file. It is copied by the 'version' task. | ||
'!npm-debug.log' // Ignore debug log from NPM if it's there | ||
] | ||
} | ||
slug: 'siteorigin-north', | ||
jsMinSuffix: '.min', | ||
contributors: { | ||
src: [ | ||
'{**/*.js,**/*.php,**/*.less,**/*.scss}', | ||
'!{build,build/**}', // Ignore build/ submodule | ||
'!{inc/settings,inc/settings/**}', // Ignore settings submodule | ||
'!{inc/panels-lite,inc/panels-lite/**}', // Ignore panels-lite submodule | ||
'!{languages,languages/**}', // Ignore languages | ||
'!{tests,tests/**}', // Ignore tests/ and contents if any | ||
'!{tmp,tmp/**}' // Ignore tmp/ and contents if any | ||
], | ||
format: 'php', | ||
skipCommits: [ ], | ||
excludeEmails: [ | ||
'77e88891e4965161953320ec66623cbc', // Remove [email protected] | ||
] | ||
}, | ||
version: { | ||
src: [ | ||
'functions.php', | ||
'readme.txt' | ||
] | ||
}, | ||
sass: { | ||
src: [ | ||
'sass/**/*.scss', | ||
], | ||
include: [ | ||
'sass', | ||
], | ||
external: { | ||
src: [ | ||
'inc/settings/css/**/*.scss', | ||
], | ||
include: [ | ||
'inc/settings/css' | ||
], | ||
} | ||
}, | ||
less: { | ||
src: [], | ||
include: [], | ||
external: { | ||
src: [ | ||
'inc/panels-lite/css/**/*.less', | ||
], | ||
include: [ | ||
'inc/panels-lite/css', | ||
], | ||
}, | ||
}, | ||
js: { | ||
src: [ | ||
'js/**/*.js', | ||
'inc/settings/js/**/*.js', | ||
'inc/panels-lite/js/**/*.js', | ||
'!{node_modules,node_modules/**}', // Ignore node_modules/ and contents | ||
'!{tests,tests/**}', // Ignore tests/ and contents | ||
'!{tmp,tmp/**}' // Ignore tmp/ and contents | ||
] | ||
}, | ||
copy: { | ||
src: [ | ||
'**/!(*.js|*.scss|*.md|style.css|woocommerce.css)', // Everything except .js and .scss files | ||
'!{build,build/**}', // Ignore build/ and contents | ||
'!{sass,sass/**}', // Ignore sass/ and contents | ||
'inc/settings/chosen/*.js', // Ensure necessary .js files ignored in the first glob are copied | ||
'!{inc/settings/bin,inc/settings/bin/**}', // Ignore settings/bin/ and contents | ||
'!{inc/settings/README.md}', // Ignore settings/README.md | ||
'!{tests,tests/**}', // Ignore tests/ and contents | ||
'!{tmp,tmp/**}', // Ignore tmp/ and contents | ||
'!phpunit.xml', // Not the unit tests configuration file. (If there is one.) | ||
'!functions.php', // Not the functions .php file. It is copied by the 'version' task. | ||
'!readme.txt', // Not the readme.txt file. It is copied by the 'version' task. | ||
'!npm-debug.log' // Ignore debug log from NPM if it's there | ||
] | ||
} | ||
}; |
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
Oops, something went wrong.