Skip to content

Commit

Permalink
bump dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Chase Coalwell committed Mar 7, 2019
1 parent 9403799 commit 76ce73a
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .changes/next-release/bugfix-dev dependencies-23e6494b.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "bugfix",
"category": "dev dependencies",
"description": "bump versions of cucumber, karma, mocha and webpack"
}
2 changes: 1 addition & 1 deletion dist-tools/webpack.config.rn-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = {
loaders: [
{
test: /\.json$/,
loaders: ['json']
loaders: ['json-loader']
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion dist-tools/webpack.config.rn-dep.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = {
loaders: [
{
test: /\.json$/,
loaders: ['json']
loaders: ['json-loader']
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions dist-tools/webpack.config.rn.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
library: 'AWS'
},
resolve: {
packageAlias: 'react-native'
aliasFields: ['react-native']
},
module: {
/**
Expand All @@ -27,7 +27,7 @@ module.exports = {
loaders: [
{
test: /\.json$/,
loaders: ['json']
loaders: ['json-loader']
}
]
}
Expand Down
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,24 @@
"codecov": "^1.0.1",
"coffee-script": "1.6.3",
"coffeeify": "*",
"cucumber": "0.5.x",
"coffeescript": "^2.3.2",
"cucumber": "^5.1.0",
"eslint": "^5.8.0",
"hash-test-vectors": "^1.3.2",
"insert-module-globals": "^7.0.0",
"istanbul": "*",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"json-loader": "^0.5.4",
"karma": "^2.0.0",
"json-loader": "^0.5.7",
"karma": "^4.0.1",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "^1.1.0",
"mocha": "^3.0.0",
"mocha": "^4.0.0",
"repl.history": "*",
"semver": "*",
"typescript": "2.0.8",
"uglify-js": "2.x",
"webpack": "^1.15.0"
"webpack": "^3.0.0"
},
"dependencies": {
"buffer": "4.9.1",
Expand Down Expand Up @@ -124,7 +125,7 @@
"unit": "mocha -- test test/json test/model test/protocol test/query test/services test/signers test/xml test/s3 test/cloudfront test/dynamodb test/polly test/rds test/publisher test/event-stream",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --reporter=lcovonly -- test test/json test/model test/protocol test/query test/services test/signers test/xml test/s3 test/cloudfront test/dynamodb test/polly test/rds test/publisher test/event-stream",
"browsertest": "rake browser:test && karma start",
"buildertest": "mocha --compilers coffee:coffee-script -s 1000 -t 10000 dist-tools/test",
"buildertest": "mocha --require coffee-script -s 1000 -t 10000 dist-tools/test/*.coffee",
"integration": "cucumber.js",
"lint": "eslint lib test dist-tools/*.js",
"console": "./scripts/console",
Expand All @@ -143,4 +144,4 @@
"helper-test": "mocha scripts/lib/test-helper.spec.js",
"csm-functional-test": "mocha test/publisher/functional_test"
}
}
}
2 changes: 1 addition & 1 deletion test/mocha.opts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
--reporter dot
--ui bdd
--timeout 4000
--no-exit
--exit

0 comments on commit 76ce73a

Please sign in to comment.