Skip to content

Commit

Permalink
Fix missing index file in buil
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed May 26, 2015
1 parent 249ad35 commit 6fc3058
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = function (grunt) {
}
},
release: {
src: ["lib/**/*.ts"],
src: ["index.ts", "lib/**/*.ts"],
options: {
sourceMap: false,
fast: 'never'
Expand Down
64 changes: 64 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
var __extends = this.__extends || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
var _Core = require('./lib/Core');
var _Model = require('./lib/Model');
var _Instance = require('./lib/Instance');
var _MemoryCache = require('./lib/caches/MemoryCache');
var _NoOpCache = require('./lib/caches/NoOpCache');
var _IDDirector = require('./lib/cacheControllers/IDDirector');
var Iridium;
(function (Iridium) {
var Core = (function (_super) {
__extends(Core, _super);
function Core() {
_super.apply(this, arguments);
}
return Core;
})(_Core);
Iridium.Core = Core;
var Model = (function (_super) {
__extends(Model, _super);
function Model() {
_super.apply(this, arguments);
}
return Model;
})(_Model);
Iridium.Model = Model;
var Instance = (function (_super) {
__extends(Instance, _super);
function Instance() {
_super.apply(this, arguments);
}
return Instance;
})(_Instance);
Iridium.Instance = Instance;
var NoOpCache = (function (_super) {
__extends(NoOpCache, _super);
function NoOpCache() {
_super.apply(this, arguments);
}
return NoOpCache;
})(_NoOpCache);
Iridium.NoOpCache = NoOpCache;
var MemoryCache = (function (_super) {
__extends(MemoryCache, _super);
function MemoryCache() {
_super.apply(this, arguments);
}
return MemoryCache;
})(_MemoryCache);
Iridium.MemoryCache = MemoryCache;
var CacheOnID = (function (_super) {
__extends(CacheOnID, _super);
function CacheOnID() {
_super.apply(this, arguments);
}
return CacheOnID;
})(_IDDirector);
Iridium.CacheOnID = CacheOnID;
})(Iridium || (Iridium = {}));
module.exports = Iridium;

0 comments on commit 6fc3058

Please sign in to comment.