-
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.
- Loading branch information
Showing
9 changed files
with
11,947 additions
and
0 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,25 @@ | ||
#A sample editorconfig file. Customize as you wish. | ||
#This will keep code formatting more consistent across developers. | ||
#See editorconfig.org for more details | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
# change these settings to your own preference | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# we recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[{package,bower}.json] | ||
indent_style = space | ||
indent_size = 2 |
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 @@ | ||
#A gitignore file. Customize as you like | ||
|
||
#ignore IDE related files | ||
.idea | ||
.settings | ||
.project | ||
|
||
#ignore npm-generated directories | ||
node_modules | ||
|
||
#ignore gulpfile-generated directories | ||
.tmp | ||
dist | ||
|
||
#ignore bower-generated directories | ||
bower_components | ||
test/bower_components | ||
|
||
#ignore developer-specific environment settings | ||
.env |
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 @@ | ||
const gulp = require('gulp'); | ||
const core = require('./node_modules/core/gulp_helper'); | ||
const pkg = require('./package.json'); | ||
|
||
core.embeddedApp.createTasks(gulp, { | ||
pkg, | ||
embedArea: 'full', | ||
environmentOverride: null, | ||
deploymentPath: '', | ||
preprocessorContext: { | ||
local: {}, | ||
dev: {}, | ||
qa: {}, | ||
prod: {} | ||
} | ||
}); |
Oops, something went wrong.