Skip to content

Commit 7897104

Browse files
Merge remote-tracking branch 'upstream/master' into switch-fork
2 parents 7138f10 + 201aa01 commit 7897104

Some content is hidden

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

43 files changed

+1077
-703
lines changed

.npmignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
*.swp
2+
.DS_Store
3+
.grunt
4+
_SpecRunner.html
5+
test/coverage
6+
dist_temp
7+
node_modules
8+
npm-debug.log
9+
bower_components
10+
test
11+
*.iml
12+
.idea
13+
.jshintrc
14+
.npmignore
15+
.travis.yml
16+
composer.json
17+
contributing.md
18+
Gruntfile.js
19+
karma.conf.js

.travis.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
2-
env:
3-
matrix:
2+
env:
3+
matrix:
44
- TEST_SUITE=unit
55
- TEST_SUITE=integration BROWSER='firefox'
66
- TEST_SUITE=integration BROWSER='firefox:3.5'
@@ -13,16 +13,21 @@ env:
1313
- TEST_SUITE=integration BROWSER='internet explorer:10'
1414
- TEST_SUITE=integration BROWSER='internet explorer:11'
1515
- TEST_SUITE=integration BROWSER='chrome'
16-
global:
16+
global:
1717
- secure: VY4J2ERfrMEin++f4+UDDtTMWLuE3jaYAVchRxfO2c6PQUYgR+SW4SMekz855U/BuptMtiVMR2UUoNGMgOSKIFkIXpPfHhx47G5a541v0WNjXfQ2qzivXAWaXNK3l3C58z4dKxgPWsFY9JtMVCddJd2vQieAILto8D8G09p7bpo=
1818
- secure: kehbNCoYUG2gLnhmCH/oKhlJG6LoxgcOPMCtY7KOI4ropG8qlypb+O2b/19+BWeO3aIuMB0JajNh3p2NL0UKgLmUK7EYBA9fQz+vesFReRk0V/KqMTSxHJuseM4aLOWA2Wr9US843VGltfODVvDN5sNrfY7RcoRx2cTK/k1CXa8=
19-
node_js:
20-
- 0.11.13
21-
before_script:
19+
node_js:
20+
- "4.1"
21+
cache:
22+
directories:
23+
- node_modules
24+
- bower_components
25+
before_install:
2226
- npm install -g grunt-cli@0.1.13
23-
- npm install -g node-static@0.7.3
2427
- npm install -g bower@1.3.8
25-
- bower install
28+
install:
29+
- npm install
30+
before_script:
2631
- grunt build
2732
script: test/ci
2833
addons:

CHANGELOG.md

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

Gruntfile.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ module.exports = function(grunt) {
136136
bloodhound: {
137137
src: '<%= tempDir %>/bloodhound.js',
138138
objectToExport: 'Bloodhound',
139-
amdModuleId: 'bloodhound',
140139
deps: {
141140
default: ['$'],
142141
amd: ['jquery'],
@@ -146,7 +145,6 @@ module.exports = function(grunt) {
146145
},
147146
typeahead: {
148147
src: '<%= tempDir %>/typeahead.jquery.js',
149-
amdModuleId: 'typeahead.js',
150148
deps: {
151149
default: ['$'],
152150
amd: ['jquery'],

0 commit comments

Comments
 (0)