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
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "smooth", | |
| "color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
| "file_exclude_patterns": | |
| [ | |
| "smart.lock", | |
| ".DS_Store", | |
| ".bowerrc", | |
| ".gitignore", |
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
| (function (window) { | |
| 'use strict'; | |
| var c3 = window.c3 = {}; | |
| var d3 = window.d3; | |
| /* | |
| * Generate chart according to config | |
| */ | |
| c3.generate = function (config) { |
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
Show hidden characters
| { | |
| "bold_folder_labels": true, | |
| "caret_extra_width": 1, | |
| "caret_style": "smooth", | |
| "close_windows_when_empty": false, | |
| "color_scheme": "Packages/Oceanic Next Color Scheme/Oceanic Next.tmTheme", | |
| "file_exclude_patterns": | |
| [ | |
| "smart.lock", | |
| ".DS_Store", |
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
| 'use strict' | |
| module.exports = (grunt) -> | |
| grunt.initConfig | |
| open: | |
| default: | |
| url: 'http://localhost:5000' | |
| reload: | |
| port: 5000 | |
| proxy: |
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
| npm install |
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
| grunt --version | |
| # Returns: grunt-cli v0.1.6 |
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
| module.exports = (grunt) -> | |
| grunt.loadNpmTasks 'grunt-contrib-coffee' | |
| grunt.loadNpmTasks 'grunt-contrib-sass' | |
| grunt.loadNpmTasks 'grunt-haml' | |
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
| grunt.initConfig | |
| coffee: | |
| scripts: | |
| files: | |
| grunt.file.expandMapping(['src/scripts/**/*.coffee'], 'blog/scripts/', | |
| rename: (destBase, destPath) -> | |
| return destBase + destPath.slice(12, destPath.length) | |
| .replace(/\.coffee$/, '.js') | |
| ) | |
| main: |
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
| grunt.registerTask 'watch', ['connect', 'build', 'livereload-start', | |
| 'open', 'regarde'] |
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
| grunt.registerTask 'build', ['coffee', 'sass', 'haml'] |
OlderNewer