Skip to content

Commit

Permalink
embedded app set up
Browse files Browse the repository at this point in the history
  • Loading branch information
KatiRG committed Mar 26, 2020
1 parent 49776ff commit bfa5449
Show file tree
Hide file tree
Showing 9 changed files with 11,947 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
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
20 changes: 20 additions & 0 deletions .gitignore
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
16 changes: 16 additions & 0 deletions gulpfile.js
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: {}
}
});
Loading

0 comments on commit bfa5449

Please sign in to comment.