Skip to content

Commit ec21ec5

Browse files
committed
Replace Grunt with gulp
1 parent 0725861 commit ec21ec5

12 files changed

+148
-154
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ node_js:
44
- "0.10"
55

66
before_install:
7-
- npm install -g bower grunt-cli
7+
- npm install -g bower gulp

Gruntfile.js

-116
This file was deleted.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ which was later updated to include performance improvements [seen here](http://c
6565

6666
- node.js >= v0.10.x
6767
- npm
68-
- grunt CLI `npm install -g grunt-cli`
68+
- gulp `npm install -g gulp`
6969
- bower `npm install -g bower`
7070

7171
### Dear Developer
@@ -80,7 +80,7 @@ $ npm test
8080
##### Contributing
8181

8282
In lieu of a formal style guide, please take good care to maintain the existing coding style.
83-
Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
83+
Add unit tests for any new or changed functionality. Lint and test your code using [gulp.js](http://gulpjs.com/).
8484
Please refer to this [document][commit-message-format] for a detailed explanation of git commit guidelines - source: [AngularJS](https://angualrjs.org)
8585
[commit-message-format]: https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#
8686

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-localization",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"homepage": "https://github.com/doshprompt/angular-localization",
55
"description": "angularjs localization done right",
66
"main": "angular-localization.js",

build/protractor.conf.js

+11-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
exports.config = {
2-
allScriptsTimeout: 11000,
2+
allScriptsTimeout: 11000,
3+
seleniumPort: null,
34

4-
specs: [
5-
'../tests/e2e/*.js'
6-
],
5+
capabilities: {
6+
'browserName': 'phantomjs',
7+
'phantomjs.binary.path':'./node_modules/phantomjs/bin/phantomjs'
8+
},
79

8-
capabilities: {
9-
'browserName': 'phantomjs',
10-
'phantomjs.binary.path':'./node_modules/phantomjs/bin/phantomjs'
11-
},
10+
baseUrl: 'http://localhost:9001/app/',
1211

13-
baseUrl: 'http://localhost:9001/app/',
12+
framework: 'jasmine',
1413

15-
framework: 'jasmine',
16-
17-
jasmineNodeOpts: {
18-
defaultTimeoutInterval: 30000
19-
}
14+
jasmineNodeOpts: {
15+
defaultTimeoutInterval: 30000
16+
},
2017
};

dist/angular-localization.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* angular-localization :: v1.1.0 :: 2014-10-06
2+
* angular-localization :: v1.1.2 :: 2014-10-06
33
* web: https://github.com/doshprompt/angular-localization
44
*
55
* Copyright (c) 2014 | Rahul Doshi
@@ -393,5 +393,5 @@ angular.module('ngLocalize.InstalledLanguages', [])
393393
'en': 'en-US'
394394
});
395395
angular.module('ngLocalize.Version', [])
396-
.constant('localeVer', 'v1.1.0');
396+
.constant('localeVer', '1.1.2');
397397
})(window.angular, window, document);

dist/angular-localization.min.js

100644100755
+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-localization.min.js.gz

1.99 KB
Binary file not shown.

dist/angular-localization.min.js.gzip

-2.08 KB
Binary file not shown.

0 commit comments

Comments
 (0)