Skip to content
This repository has been archived by the owner on Dec 26, 2019. It is now read-only.

Commit

Permalink
Hide 1.1 features.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Walther committed Sep 2, 2015
1 parent 57ff256 commit b58dbed
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 26 deletions.
19 changes: 19 additions & 0 deletions .editorconfig
@@ -0,0 +1,19 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# 4 tab indentation
[*.*]
indent_style = tab
indent_size = 4

# 2 space indentation for package.json since this is npm default
[package.json]
indent_style = space
indent_size = 2
17 changes: 0 additions & 17 deletions .yo-rc.json

This file was deleted.

18 changes: 9 additions & 9 deletions gulpfile.js
@@ -1,20 +1,20 @@
'use strict';
var gulp = require('gulp');
var senseGo = require('sense-go');
var path = require('path' );
var gulp = require( 'gulp' );
var senseGo = require( 'sense-go' );
var path = require( 'path' );

var userConfig = senseGo.loadYml( path.join(__dirname, 'sense-go.yml'));
senseGo.init( gulp, userConfig, function ( ) {
var userConfig = senseGo.loadYml( path.join( __dirname, 'sense-go.yml' ) );
senseGo.init( gulp, userConfig, function () {

gulp.task('watch:build', function () {
gulp.task( 'watch:build', function () {
gulp.watch(
['./src/**/*.*'],
{
readDelay: 10,
usePolling: true,
interval: 50
},
gulp.series('build'))
});
gulp.series( 'build' ) )
} );

});
} );

0 comments on commit b58dbed

Please sign in to comment.