adds info about the source of the lib/* files
This commit is contained in:
parent
c165aca080
commit
a648ffbdab
9 changed files with 36 additions and 1 deletions
4
index.js
4
index.js
|
|
@ -1,3 +1,7 @@
|
|||
// this file is a modified version of the v0.2.1 easel local OS X
|
||||
// install. you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
var io = require('socket.io')
|
||||
, http = require('http')
|
||||
, WebsocketController = require('./lib/websocket_controller')
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// this file is part of the v0.2.1 easel local OS X install.
|
||||
// you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
exports.logger = function() {
|
||||
var logger = function(name) {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
// this file is part of the v0.2.1 easel local OS X install.
|
||||
// you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
var ErrorHandler = (function () {
|
||||
|
||||
return {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
// this file is part of the v0.2.1 easel local OS X install.
|
||||
// you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
module.exports = function(that) {
|
||||
var listeners = [];
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
// this file is part of the v0.2.1 easel local OS X install.
|
||||
// you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
var interval = function(callback) {
|
||||
var id = null;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
// this file is part of the v0.2.1 easel local OS X install.
|
||||
// you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
var _ = require('underscore')._
|
||||
, fs = require('fs')
|
||||
, readline = require('readline')
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
// this file is part of the v0.2.1 easel local OS X install.
|
||||
// you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
var _ = require('underscore')._
|
||||
, Debugger = require('./debugger')
|
||||
, eventDispatcher = require('./event_dispatcher');
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
// this file is part of the v0.2.1 easel local OS X install.
|
||||
// you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
var errorHandler = require('./error_handler')
|
||||
, SP = require('serialport')
|
||||
, Debugger = require('./debugger')
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
// this file is part of the v0.2.1 easel local OS X install.
|
||||
// you can find out more about easel and the x-carve at
|
||||
// inventables.com & easel.inventables.com
|
||||
|
||||
var Machine = require('./machine')
|
||||
, SerialPortController = require('./serial_port_controller')
|
||||
, path = require('path')
|
||||
|
|
|
|||
Loading…
Reference in a new issue