forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from adform/SSP-910_Switch_to_latest_stable_pre…
…bid_version Switch to latest stable prebid version
- Loading branch information
Showing
79 changed files
with
12,114 additions
and
16,717 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"presets": ["es2015"], | ||
"plugins": ["transform-object-assign"] | ||
} |
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,54 +1,71 @@ | ||
node_modules/ | ||
|
||
|
||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion | ||
|
||
*.iml | ||
|
||
## Directory-based project format: | ||
.idea/ | ||
# if you remove the above rule, at least ignore the following: | ||
|
||
# User-specific stuff: | ||
# .idea/workspace.xml | ||
# .idea/tasks.xml | ||
# .idea/dictionaries | ||
|
||
# Sensitive or high-churn files: | ||
# .idea/dataSources.ids | ||
# .idea/dataSources.xml | ||
# .idea/sqlDataSources.xml | ||
# .idea/dynamic.xml | ||
# .idea/uiDesigner.xml | ||
|
||
# Gradle: | ||
# .idea/gradle.xml | ||
# .idea/libraries | ||
|
||
# Mongo Explorer plugin: | ||
# .idea/mongoSettings.xml | ||
|
||
## File-based project format: | ||
*.ipr | ||
*.iws | ||
|
||
## Plugin-specific files: | ||
|
||
# IntelliJ | ||
/out/ | ||
|
||
# mpeltonen/sbt-idea plugin | ||
.idea_modules/ | ||
|
||
# JIRA plugin | ||
atlassian-ide-plugin.xml | ||
|
||
# Crashlytics plugin (for Android Studio and IntelliJ) | ||
com_crashlytics_export_strings.xml | ||
crashlytics.properties | ||
crashlytics-build.properties | ||
*.swp | ||
*.swo | ||
|
||
#zip files (for releases) | ||
*.zip | ||
# Built Files | ||
node_modules/ | ||
build | ||
|
||
# Test Files | ||
test/app | ||
gpt.html | ||
gpt-each-bidder3.html | ||
|
||
# Dev File | ||
|
||
integrationExamples/gpt/gpt.html | ||
integrationExamples/implementations/ | ||
|
||
# Coverage reports | ||
build/coverage/ | ||
|
||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion | ||
|
||
*.iml | ||
|
||
## Directory-based project format: | ||
.idea/ | ||
# if you remove the above rule, at least ignore the following: | ||
|
||
# User-specific stuff: | ||
# .idea/workspace.xml | ||
# .idea/tasks.xml | ||
# .idea/dictionaries | ||
|
||
# Sensitive or high-churn files: | ||
# .idea/dataSources.ids | ||
# .idea/dataSources.xml | ||
# .idea/sqlDataSources.xml | ||
# .idea/dynamic.xml | ||
# .idea/uiDesigner.xml | ||
|
||
# Gradle: | ||
# .idea/gradle.xml | ||
# .idea/libraries | ||
|
||
# Mongo Explorer plugin: | ||
# .idea/mongoSettings.xml | ||
|
||
## File-based project format: | ||
*.ipr | ||
*.iws | ||
|
||
## Plugin-specific files: | ||
|
||
# IntelliJ | ||
/out/ | ||
|
||
# mpeltonen/sbt-idea plugin | ||
.idea_modules/ | ||
|
||
# JIRA plugin | ||
atlassian-ide-plugin.xml | ||
|
||
# Crashlytics plugin (for Android Studio and IntelliJ) | ||
com_crashlytics_export_strings.xml | ||
crashlytics.properties | ||
crashlytics-build.properties | ||
*.swp | ||
*.swo | ||
|
||
#zip files (for releases) | ||
*.zip | ||
|
||
# TypeScript typings | ||
typings/ |
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,11 @@ | ||
{ | ||
"maxErrors": 1000, | ||
"requireTrailingComma": null, | ||
"requireCamelCaseOrUpperCaseIdentifiers": null, | ||
"requireSpacesInAnonymousFunctionExpression": null, | ||
"validateIndentation": 2, | ||
"disallowSpacesInFunctionDeclaration": { | ||
"beforeOpeningRoundBrace": true | ||
}, | ||
"disallowNewlineBeforeBlockStatements": true | ||
} |
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,38 @@ | ||
{ | ||
"bitwise": false, | ||
"browser": true, | ||
"curly": false, | ||
"devel": true, | ||
"eqeqeq": true, | ||
"freeze": true, | ||
"immed": true, | ||
"maxdepth": 5, | ||
"newcap": true, | ||
"noarg": true, | ||
"node": true, | ||
"notypeof": true, | ||
"esnext": true, | ||
"trailing": true, | ||
"undef": true, | ||
"unused": true, | ||
"strict": false, | ||
"scripturl": true, | ||
"globals": { | ||
"before": true, | ||
"after": true, | ||
"exports": true, | ||
"pbjs": true, | ||
"pbjsTestOnly": true, | ||
"assert": false, | ||
"expect": false, | ||
"dump": false, | ||
"describe": false, | ||
"it": false, | ||
"xit": false, | ||
"pkg": false, | ||
"sinon": false, | ||
"beforeEach": false, | ||
"afterEach": false, | ||
"JSON": true | ||
} | ||
} |
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,11 +1,10 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- 0.12 | ||
- 0.11 | ||
|
||
before_install: | ||
- npm install -g gulp | ||
|
||
script: | ||
- gulp build | ||
language: node_js | ||
|
||
node_js: | ||
- "5.1" | ||
|
||
before_install: | ||
- npm install -g gulp | ||
|
||
script: | ||
- gulp build |
Oops, something went wrong.