-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
What Happened: - replace grunt with gulp - add gulp and boilerplate-gulp to dev dependencies - add gulp configuration file - update jshint configuration file - rename demo folder to example
- Loading branch information
Showing
12 changed files
with
56 additions
and
177 deletions.
There are no files selected for viewing
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
var gulp = require('gulp'), | ||
boilerplate = require('boilerplate-gulp'); | ||
boilerplate(gulp, { | ||
pkg: require('./package.json'), | ||
jsMain: './src/angular-footable.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,31 @@ | ||
{ | ||
"name": "angular-footable", | ||
"version": "0.0.1", | ||
"description": "Angular library/reusable module seed", | ||
"main": "gruntfile.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ziscloud/angular-footable.git" | ||
}, | ||
"keywords": [ | ||
"angular", | ||
"library", | ||
"seed" | ||
], | ||
"author": "Eryk Napierała", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/ziscloud/angular-footable/issues" | ||
}, | ||
"homepage": "https://github.com/ziscloud/angular-footable", | ||
"devDependencies": { | ||
"grunt": "~0.4", | ||
"grunt-contrib-clean": "~0.5", | ||
"grunt-contrib-concat": "~0.4", | ||
"grunt-contrib-jshint": "~0.10", | ||
"grunt-contrib-uglify": "~0.5", | ||
"grunt-contrib-watch": "~0.6", | ||
"grunt-http-server": "0.0.5", | ||
"grunt-karma": "~0.8", | ||
"grunt-ng-annotate": "^0.2.2", | ||
"karma": "~0.12", | ||
"karma-jasmine": "~0.2", | ||
"karma-phantomjs-launcher": "~0.1", | ||
"load-grunt-tasks": "~0.5", | ||
"ng-annotate": "^0.9.6", | ||
"phantomjs": "~1.9" | ||
} | ||
"name": "angular-footable", | ||
"version": "0.0.1", | ||
"description": "Angular derictive for FooTable", | ||
"main": "gruntfile.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"test": "gulp test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ziscloud/angular-footable.git" | ||
}, | ||
"keywords": [ | ||
"angular", | ||
"library", | ||
"seed" | ||
], | ||
"author": "Tony Wang", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/ziscloud/angular-footable/issues" | ||
}, | ||
"homepage": "https://github.com/ziscloud/angular-footable", | ||
"devDependencies": { | ||
"gulp": "~3.8.0", | ||
"boilerplate-gulp": "~0.2.0" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use strict'; | ||
|
||
angular | ||
.module('angular-footable', [ ]) | ||
.factory('example', function($rootScope) { | ||
|
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
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