mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
16 lines
584 B
CoffeeScript
16 lines
584 B
CoffeeScript
# This file is the first thing loaded on startup.
|
|
|
|
# load require() function
|
|
root = OSX.NSBundle.mainBundle.resourcePath
|
|
code = OSX.NSString.stringWithContentsOfFile path = "#{root}/src/require.js"
|
|
__jsc__.evalJSString_withScriptPath code, path
|
|
|
|
console.log 'require tests:'
|
|
console.log require.resolve 'underscore'
|
|
console.log require.resolve 'osx'
|
|
console.log require.resolve 'tabs/tabs'
|
|
console.log require.resolve '~/.atomicity'
|
|
console.log require.resolve 'ace/requirejs/text!ace/css/editor.css'
|
|
console.log require.resolve 'ace/keyboard/keybinding'
|
|
console.log '--------------'
|