Skip to content

Commit 800dd0a

Browse files
committed
Revert 5b1c360..ce185be
This rolls back to commit 5b1c360.
1 parent ce185be commit 800dd0a

File tree

334 files changed

+104624
-4721
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

334 files changed

+104624
-4721
lines changed

.bowerrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"directory": "examples/bower_components"
3-
}
2+
"directory": "demo/bower_components"
3+
}

.editorconfig

Lines changed: 0 additions & 6 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 2 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,3 @@ node_modules
1616
# IDE files #
1717
.idea
1818
*.iml
19-
20-
examples/bower_components
21-
examples/source

.jscsrc

Lines changed: 0 additions & 63 deletions
This file was deleted.

.jshintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.jshintrc

Lines changed: 29 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,31 @@
11
{
2-
"bitwise": true,
3-
"immed": true,
4-
"newcap": true,
5-
"noarg": true,
6-
"noempty": true,
7-
"nonew": true,
8-
"trailing": true,
9-
"maxlen": 200,
10-
"boss": true,
11-
"eqnull": true,
12-
"expr": true,
13-
"laxbreak": true,
14-
"loopfunc": true,
15-
"sub": false,
16-
"undef": true,
17-
"curly": true,
18-
"browser": true,
19-
"indent": 2,
20-
"devel": true,
21-
"jquery": true,
22-
"globals": {
23-
"_": true,
24-
"angular": true,
25-
"module": true,
26-
"require": true,
27-
"IE": true,
28-
"beforeEach": true,
29-
"describe": true,
30-
"expect": true,
31-
"inject": true,
32-
"it": true
33-
}
2+
"bitwise": true,
3+
"immed": true,
4+
"newcap": true,
5+
"noarg": true,
6+
"noempty": true,
7+
"nonew": true,
8+
"trailing": true,
9+
"maxlen": 200,
10+
"boss": true,
11+
"eqnull": true,
12+
"expr": true,
13+
"globalstrict": true,
14+
"laxbreak": true,
15+
"loopfunc": true,
16+
"sub": false,
17+
"undef": true,
18+
"curly": true,
19+
"browser": true,
20+
"indent": 2,
21+
"globals": {
22+
"jQuery": true,
23+
"$": true,
24+
"_": true,
25+
"angular": true,
26+
"module": true,
27+
"require": true,
28+
"IE": true,
29+
"console": true
30+
}
3431
}

.travis.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@ language: node_js
22
node_js:
33
- "0.10"
44

5+
before_install:
6+
- "export DISPLAY=:99.0"
7+
- "sh -e /etc/init.d/xvfb start"
8+
59
before_script:
6-
- npm install -g bower
7-
- bower install
10+
- npm install -g grunt-cli bower
11+
- bower install --verbose
812

913
script:
10-
- npm test
11-
14+
- grunt test
15+
1216
notifications:
1317
- email: false

0 commit comments

Comments
 (0)