Skip to content

Commit 125a48f

Browse files
committed
updated to latest d3-cloud to get rid of contextify errors from jsdom
and switched back to using bower because the files must be in the chrome app's dir
1 parent 44af8f8 commit 125a48f

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22

33
node_js:
4-
- 4
4+
- 8
55

66
notifications:
77
email:
@@ -21,10 +21,13 @@ install:
2121
# Download and configure deps
2222
- npm install -g bower
2323
- npm install -g grunt-cli
24+
- npm install grunt
2425
- npm install -g jasmine-node
2526
- pwd
2627
- ls bower.json && bower install
28+
- npm install
2729
# Make sure the emulator has started before running tests
2830

2931
script:
32+
- pwd
3033
- grunt travis

app/app/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ <h1 title="Generate wordclouds for any language and any Unicode charset, with au
4848
<p hidden >OpenSource code available on <a href="https://github.com/iLanguage/iLanguageCloudChrome">https://github.com/iLanguage/iLanguageCloudChrome</a></p>
4949
</footer>
5050
<!-- build:js scripts/vendor.js -->
51-
<script src="node_modules/angular/angular.min.js"></script>
51+
<script src="bower_components/angular/angular.min.js"></script>
5252
<!-- endbuild -->
5353

5454
<!-- build:js scripts/ilanguage-cloud-angular.js -->
55-
<script src="node_modules/ilanguage-cloud/dist/ilanguage-cloud.js"></script>
55+
<script src="bower_components/ilanguage-cloud/dist/ilanguage-cloud.js"></script>
5656
<script src="scripts/app.js"></script>
5757
<script src="scripts/services/word-cloud-storage.js"></script>
5858
<script src="scripts/directives/word-cloud-focus.js"></script>

app/bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"dependencies": {
55
"angular": "1.2.9",
6-
"ilanguage-cloud": "git://github.com/iLanguage/iLanguageCloud.git"
6+
"ilanguage-cloud": "git://github.com/cesine/iLanguageCloud.git"
77
},
88
"main": "dist/scripts/ilanguage-cloud-angular.js, dist/scripts/templates.js"
99
}

app/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"dependencies": {
99
"angular": "1.2.9",
10-
"ilanguage-cloud": "git://github.com/iLanguage/iLanguageCloud.git"
10+
"ilanguage-cloud": "git://github.com/cesine/iLanguageCloud.git"
1111
},
1212
"devDependencies": {
1313
"grunt": "^1.0.1",
@@ -31,6 +31,7 @@
3131
"grunt-mocha": "^1.0.4",
3232
"grunt-svgmin": "^4.0.0",
3333
"grunt-usemin": "^3.1.1",
34+
"jasmine-core": "^2.8.0",
3435
"jshint-stylish": "^2.2.1",
3536
"karma": "^1.7.1",
3637
"karma-chrome-launcher": "^2.2.0",

0 commit comments

Comments
 (0)