segmentio-facade
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -0,1 +1,6 @@ | ||
3.0.2 / 2016-05-17 | ||
================== | ||
* Misc cleanup and test harness improvements | ||
3.0.1 / 2016-05-16 | ||
@@ -2,0 +7,0 @@ ================== |
/* eslint-env node */ | ||
'use strict'; | ||
if (!process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY) { | ||
throw new Error('SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are required but are missing'); | ||
} | ||
var baseConfig = require('./karma.conf'); | ||
@@ -69,18 +67,26 @@ var customLaunchers = { | ||
module.exports = { | ||
singleRun: true, | ||
module.exports = function(config) { | ||
baseConfig(config); | ||
browsers: ['PhantomJS'].concat(Object.keys(customLaunchers)), | ||
if (!process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY) { | ||
throw new Error('SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are required but are missing'); | ||
} | ||
customLaunchers: customLaunchers, | ||
config.set({ | ||
singleRun: true, | ||
sauceLabs: { | ||
testName: require('./package.json').name | ||
} | ||
browsers: ['PhantomJS'].concat(Object.keys(customLaunchers)), | ||
// coverageReporter: { | ||
// reporters: [ | ||
// { type: 'lcov' } | ||
// ] | ||
// } | ||
customLaunchers: customLaunchers, | ||
sauceLabs: { | ||
testName: require('./package.json').name | ||
} | ||
// coverageReporter: { | ||
// reporters: [ | ||
// { type: 'lcov' } | ||
// ] | ||
// } | ||
}); | ||
}; |
@@ -5,3 +5,3 @@ /* eslint-env node */ | ||
module.exports = function(config) { | ||
var baseConfig = { | ||
config.set({ | ||
files: [ | ||
@@ -51,9 +51,3 @@ 'test/**/*.js' | ||
} | ||
}; | ||
if (process.env.CI) { | ||
Object.assign(baseConfig, require('./karma.conf.ci')); | ||
} | ||
config.set(baseConfig); | ||
}); | ||
}; |
{ | ||
"name": "segmentio-facade", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "Providing common fields for analytics integrations", | ||
@@ -33,2 +33,3 @@ "keywords": [], | ||
"@segment/isodate": "^1.0.2", | ||
"@segment/to-iso-string": "^1.0.0", | ||
"browserify": "^13.0.0", | ||
@@ -55,5 +56,4 @@ "browserify-istanbul": "^2.0.0", | ||
"sinon": "^1.7.3", | ||
"to-iso-string": "0.0.2", | ||
"watchify": "^3.7.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
308856
2