View npm-debug.log
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
0 info it worked if it ends with ok | |
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe', | |
1 verbose cli 'D:\\github\\atom\\atom\\build\\node_modules\\npm\\bin\\npm-cli.js', | |
1 verbose cli '--userconfig=D:\\github\\atom\\atom\\build\\.npmrc', | |
1 verbose cli 'install', | |
1 verbose cli '--loglevel', | |
1 verbose cli 'error' ] | |
2 info using npm@2.13.3 | |
3 info using node@v4.4.4 | |
4 verbose config Skipping project config: D:\github\atom\atom\build/.npmrc. (matches userconfig) |
View gulpfile.js
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
var gulp = require('gulp'); | |
var watch = require('gulp-watch'); | |
var shell = require('gulp-shell') | |
var stylus = require('gulp-stylus'); | |
var paths = { | |
'src':['./models/**/*.js','./routes/**/*.js', 'keystone.js', 'package.json'] |
View PCHB16C041A660531
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
PCHB16C041A660531 |
View app.js
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
export class App { | |
configureRouter(config, router) { | |
config.title = 'Carries'; | |
config.options.pushState = true; | |
config.map([ | |
{ | |
route: ['', 'home'], | |
name: 'home', | |
moduleId: './pages/home', | |
nav: true, |
View gist:6bcc95a41cea746a5350508137eb165c
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
describe 'HTML strings', -> | |
beforeEach -> | |
waitsForPromise -> | |
atom.packages.activatePackage("language-html") | |
describe "ES6 tagged HTML string templates", -> | |
it "tokenizes them as strings", -> | |
{tokens} = grammar.tokenizeLine('html`hey <b>${name}</b>`') | |
expect(tokens[0]).toEqual value: 'html', scopes: [ 'source.js', 'string.quoted.template.html.js', 'entity.name.function.js' ] | |
expect(tokens[1]).toEqual value: '`', scopes: [ 'source.js', 'string.quoted.template.html.js', 'punctuation.definition.string.begin.js' ] |
View gist:c55194c14c3fc08abb3a7d8aab3d4a21
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
ES6 tagged HTML string templates | |
it tokenizes them as strings | |
Expected { value : 'hey ', scopes : [ 'source.js', 'string.quoted.template.html.js' ] } to equal { value : 'hey <b>', scopes : [ 'source.js', 'string.quoted.template.html.js' ] }. | |
at .<anonymous> (file:///D:/github/atom/language-javascript/spec/javascript-spec.coffee:613:27) | |
Expected { value : '<', scopes : [ 'source.js', 'string.quoted.template.html.js', 'meta.tag.inline.any.html', 'punctuation.definition.tag.begin.html' ] } to equal { value : '${', scopes : [ 'source.js', 'string.quoted.template.html.js', 'source.js.embedded.source', 'punctuation.section.embedded.js' ] }. | |
at .<anonymous> (file:///D:/github/atom/language-javascript/spec/javascript-spec.coffee:614:27) | |
Expected { value : 'b', scopes : [ 'source.js', 'string.quoted.template.html.js', 'meta.tag.inline.any.html', 'entity.name.tag.inline.any.html' ] } to equal { value : 'name', scopes : [ 'source.js', 'string.quoted.template.html.js', 'source.js.embedded.source' ] }. | |
at .<anonymous> (fi |
View terminal-sexy.txt
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
! special | |
*.foreground: #ecdeff | |
*.background: #0f1609 | |
*.cursorColor: #ecdeff | |
! black | |
*.color0: #22281f | |
*.color8: #333c2e | |
! red |
View process-palette.json
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
{ | |
"patterns": { | |
"P1": { | |
"expression": "(path):(line)" | |
}, | |
"P2": { | |
"expression": "(path)\\s+(line)", | |
"path": "(?:\\/[\\w\\.\\-]+)+" | |
} | |
}, |
View npm-debug.log
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
0 info it worked if it ends with ok | |
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe', | |
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
1 verbose cli 'dedupe' ] | |
2 info using npm@3.10.8 | |
3 info using node@v7.0.0 | |
4 silly loadCurrentTree Starting | |
5 silly install loadCurrentTree | |
6 silly install readLocalPackageData | |
7 silly dedupe normalizeTree |
OlderNewer