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 [email protected] | |
3 info using [email protected] | |
4 verbose config Skipping project config: D:\github\atom\atom\build/.npmrc. (matches userconfig) |
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'] |
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
# TextMate tutorial: http://manual.macromates.com/en/language_grammars | |
# Regex to convert keys to unquoted: '(include|match|captures|begin|end|beginCaptures|endCaptures|name|patterns|0|1|2|3|4|5|6|7|8|9|comment|fileTypes|scopeName|repository|contentName|firstLineMatch|foldingStartMarker|foldingStopMarker)': | |
scopeName: 'source.<scope>' # <scope> should be a short, unique indicator for the language ("js", "php", "c", etc.) | |
name: '<name>' # The title that will show up in grammar selection and on your status bar. | |
fileTypes: [ # An array of file extensions. | |
'txt' | |
'exif' | |
] |
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 |
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, |
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' ] |
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 |
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 |
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\\.\\-]+)+" | |
} | |
}, |
OlderNewer