Skip to content
This repository was archived by the owner on Dec 4, 2019. It is now read-only.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ docs coming soon, in the meantime, 'View Source' is your friend ;)!

#### Include

You've got 5 different options to include this in your build depending on your setup.
You've got 4 different options to include this in your build depending on your setup.

- `./release/dataTable.js` - A standalone file that was compiled with Babel (UMD)
- `./release/dataTable.min.js` - A minified standalone file that was compiled with Babel (UMD)
- `./release/dataTable.cjs.js` - A standalone file that was compiled with Babel (CommonJS)
- `./release/dataTable.es6.js` - Raw ES6 Version.

All distributions include babel helpers, so they do not have to be included separately.

There is also the CSS too:
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-data-table",
"version": "0.7.0",
"version": "0.7.1",
"homepage": "https://github.com/Swimlane/angular-data-table",
"author": {
"name": "Swimlane",
Expand Down
75 changes: 62 additions & 13 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,72 @@ System.config({
},

map: {
"angular": "npm:angular@1.4.0",
"babel": "npm:babel-core@5.8.22",
"babel-runtime": "npm:babel-runtime@5.8.20",
"core-js": "npm:core-js@1.1.1",
"github:jspm/nodelibs-process@0.1.1": {
"process": "npm:process@0.10.1"
"angular": "npm:angular@1.5.0",
"babel": "npm:babel-core@5.8.38",
"babel-runtime": "npm:babel-runtime@5.8.38",
"core-js": "npm:core-js@1.2.7",
"lodash-es": "npm:lodash-es@4.16.4",
"github:jspm/nodelibs-assert@0.1.0": {
"assert": "npm:assert@1.4.1"
},
"npm:angular@1.4.0": {
"process": "github:jspm/nodelibs-process@0.1.1"
"github:jspm/nodelibs-buffer@0.1.0": {
"buffer": "npm:buffer@3.6.0"
},
"npm:babel-runtime@5.8.20": {
"process": "github:jspm/nodelibs-process@0.1.1"
"github:jspm/nodelibs-path@0.1.0": {
"path-browserify": "npm:path-browserify@0.0.0"
},
"npm:core-js@1.1.1": {
"github:jspm/nodelibs-process@0.1.2": {
"process": "npm:process@0.11.9"
},
"github:jspm/nodelibs-util@0.1.0": {
"util": "npm:util@0.10.3"
},
"github:jspm/nodelibs-vm@0.1.0": {
"vm-browserify": "npm:vm-browserify@0.0.4"
},
"npm:angular@1.5.0": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:assert@1.4.1": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"buffer": "github:jspm/nodelibs-buffer@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.2",
"util": "npm:util@0.10.3"
},
"npm:babel-runtime@5.8.38": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:buffer@3.6.0": {
"base64-js": "npm:base64-js@0.0.8",
"child_process": "github:jspm/nodelibs-child_process@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.2",
"ieee754": "npm:ieee754@1.1.8",
"isarray": "npm:isarray@1.0.0",
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:core-js@1.2.7": {
"fs": "github:jspm/nodelibs-fs@0.1.2",
"process": "github:jspm/nodelibs-process@0.1.1",
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
"path": "github:jspm/nodelibs-path@0.1.0",
"process": "github:jspm/nodelibs-process@0.1.2",
"systemjs-json": "github:systemjs/plugin-json@0.1.2"
},
"npm:inherits@2.0.1": {
"util": "github:jspm/nodelibs-util@0.1.0"
},
"npm:path-browserify@0.0.0": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:process@0.11.9": {
"assert": "github:jspm/nodelibs-assert@0.1.0",
"fs": "github:jspm/nodelibs-fs@0.1.2",
"vm": "github:jspm/nodelibs-vm@0.1.0"
},
"npm:util@0.10.3": {
"inherits": "npm:inherits@2.0.1",
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:vm-browserify@0.0.4": {
"indexof": "npm:indexof@0.0.1"
}
}
});
23 changes: 15 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "angular-data-table",
"title": "AngularJS Data-Table",
"description": "A feature-rich but lightweight ES6 AngularJS Data Table crafted for large data sets!",
"version": "0.7.0",
"version": "0.7.1",
"repository": {
"type": "git",
"url": "git@github.com:Swimlane/angular-data-table.git",
Expand All @@ -21,10 +21,16 @@
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"scripts": {
"start": "node ./node_modules/gulp/bin/gulp.js watch serve",
"release": "node ./node_modules/gulp/bin/gulp.js release"
},
"peerDependencies": {
"angular": "1.5.x"
},
"devDependencies": {
"angular": "^1.4.4",
"angular-mocks": "^1.4.3",
"babelify": "7.3.0",
"angular": "^1.5.0",
"angular-mocks": "^1.5.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.2",
"babel-plugin-external-helpers": "^6.5.0",
Expand All @@ -33,6 +39,7 @@
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "7.3.0",
"browser-sync": "^2.7.2",
"chai-as-promised": "^5.3.0",
"del": "^1.2.0",
Expand Down Expand Up @@ -68,12 +75,12 @@
},
"jspm": {
"dependencies": {
"angular": "npm:angular@^1.4.0"
"angular": "npm:angular@^1.5.0"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.22",
"babel-runtime": "npm:babel-runtime@^5.6.4",
"core-js": "npm:core-js@^1.1.1"
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
},
"babel": {
Expand Down
Loading