This file contains hidden or 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
| var gulp = require('gulp'); | |
| var sass = require('gulp-sass'); | |
| var runSequence = require('run-sequence'); | |
| var changed = require('gulp-changed'); | |
| var plumber = require('gulp-plumber'); | |
| var ts = require('gulp-typescript'); | |
| var merge = require('merge2'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var paths = require('../paths'); | |
| var assign = Object.assign || require('object.assign'); |
This file contains hidden or 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
| System.config({ | |
| "defaultJSExtensions": true, | |
| "transpiler": "babel", | |
| "babelOptions": { | |
| "optional": [ | |
| "es7.decorators", | |
| "es7.classProperties", | |
| "runtime" | |
| ] | |
| }, |
This file contains hidden or 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
| { | |
| "name": "aurelia-skeleton-navigation", | |
| "version": "0.15.1", | |
| "description": "A starter kit for building a standard navigation-style app with Aurelia.", | |
| "keywords": [ | |
| "aurelia", | |
| "navigation", | |
| "skeleton" | |
| ], | |
| "homepage": "http://aurelia.io", |
This file contains hidden or 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
| var gulp = require('gulp'); | |
| var sass = require('gulp-sass'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var config = { | |
| sassPath: './src/sass/', | |
| bowerDir: './bower_components', | |
| autoprefixer: { | |
| cascade: true | |
| }, |
This file contains hidden or 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
| gulp.task('sass', function () { | |
| return sass(config.sassPath + '/style.scss', | |
| { | |
| style: 'expanded', | |
| loadPath:[ | |
| './src/sass', | |
| config.bowerDir + '/bootstrap-sass-official/assets/stylesheets' | |
| ]}) | |
| .on('error', notify.onError(function (error){ |
This file contains hidden or 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
| //install kss and fs-extra: npm install kss fs-extra | |
| var kss = require('kss'), | |
| options = { | |
| markdown: false | |
| }; | |
| var fs = require('fs-extra'); | |
| var file = './docs/kss.json'; |
NewerOlder