Skip to content

Commit

Permalink
feat(dependencies): Update all dependencies to the latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorgerhardt committed Oct 5, 2017
1 parent 9fa3a5c commit 55dc40f
Show file tree
Hide file tree
Showing 6 changed files with 2,118 additions and 1,377 deletions.
4 changes: 2 additions & 2 deletions __tests__/bin/mastarm.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('mastarm cli', () => {

it('should build a project', done => {
exec(
`node ${mastarm} build ${mockDir}/index.js:${buildDir}/index.js ${mockDir}/index.css:${buildDir}/index.css`,
`node ${mastarm}-build ${mockDir}/index.js:${buildDir}/index.js ${mockDir}/index.css:${buildDir}/index.css`,
(err, stdout, stderr) => {
expect(err).toBeNull()
expect(stdout).toContain('done building')
Expand All @@ -60,7 +60,7 @@ describe('mastarm cli', () => {

it('should prepublish a project', done => {
exec(
`node ${mastarm} prepublish ${mockDir}:${buildDir}`,
`node ${mastarm}-prepublish ${mockDir}:${buildDir}`,
(err, stdout, stderr) => {
expect(err).toBeNull()
expect(stdout).toBe('')
Expand Down
4 changes: 2 additions & 2 deletions __tests__/lib/__snapshots__/build.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

exports[`build development should transform css 1`] = `86`;

exports[`build development should transform js 1`] = `153933`;
exports[`build development should transform js 1`] = `153445`;

exports[`build production should transform and minify js and css 1`] = `152135`;
exports[`build production should transform and minify js and css 1`] = `153513`;

exports[`build production should transform and minify js and css 2`] = `86`;
2 changes: 1 addition & 1 deletion lib/css-transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const base64ify = postcss.plugin('postcss-base64ify', function () {
const buffer = fs.readFileSync(file)
return (
'url("data:' +
mimeType.lookup(filename) +
mimeType.getType(filename) +
';base64,' +
buffer.toString('base64') +
'")'
Expand Down
2 changes: 1 addition & 1 deletion lib/push-to-s3.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function upload ({body, s3bucket, cloudfront, outfile}) {
ACL: 'public-read',
Body: body,
Bucket: s3bucket,
ContentType: mime.lookup(outfile),
ContentType: mime.getType(outfile),
Key: outfile
}
})
Expand Down
80 changes: 40 additions & 40 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lint": "bin/mastarm lint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"pretest": "yarn",
"test": "bin/mastarm lint && bin/mastarm test --env test --test-environment node"
"test": "bin/mastarm lint && bin/mastarm test --run-in-band --env test --test-environment node"
},
"repository": {
"type": "git",
Expand All @@ -42,67 +42,67 @@
},
"homepage": "https://github.com/conveyal/mastarm",
"dependencies": {
"aws-sdk": "^2.39.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"aws-sdk": "^2.127.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"browserify": "^14.4.0",
"browserify-markdown": "1.0.0",
"budo": "^9.4.7",
"chokidar": "^1.6.1",
"commander": "^2.9.0",
"budo": "^10.0.4",
"chokidar": "^1.7.0",
"commander": "^2.11.0",
"commitizen": "^2.9.6",
"concat-stream": "^1.6.0",
"cz-conventional-changelog": "^2.0.0",
"envify": "^4.0.0",
"envify": "^4.1.0",
"errorify": "^0.3.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-config-standard-jsx": "^4.0.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-node": "^4.2.2",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-plugin-flowtype": "^2.38.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"exorcist": "^0.4.0",
"flow-bin": "^0.44.0",
"glob": "^7.1.1",
"exorcist": "^1.0.0",
"flow-bin": "^0.56.0",
"glob": "^7.1.2",
"isomorphic-fetch": "^2.2.1",
"jest": "^19.0.2",
"jest": "^21.2.1",
"lodash.uniq": "^4.5.0",
"middleware-proxy": "^2.0.2",
"mime": "^1.3.4",
"mime": "^2.0.3",
"mkdirp": "^0.5.1",
"node-emoji": "^1.5.1",
"postcss": "^5.2.16",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-reporter": "^3.0.0",
"postcss-safe-parser": "^2.0.1",
"prettier": "^1.1.0",
"rimraf": "^2.6.1",
"node-emoji": "^1.8.1",
"postcss": "^6.0.13",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-reporter": "^5.0.0",
"postcss-safe-parser": "^3.0.1",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"slack-node": "^0.1.8",
"standard-engine": "^7.0.0",
"standard-engine": "^7.1.0",
"this-commit": "^1.0.0",
"through2": "^2.0.3",
"uglifyify": "^3.0.4",
"username": "^2.3.0",
"uuid": "^3.0.1",
"uglifyify": "^4.0.4",
"username": "^3.0.0",
"uuid": "^3.1.0",
"watchify": "^3.9.0",
"yamljs": "^0.2.9"
"yamljs": "^0.3.0"
},
"devDependencies": {
"semantic-release": "^6.3.2"
"semantic-release": "^8.0.3"
},
"standard": {
"parser": "babel-eslint"
Expand Down
Loading

0 comments on commit 55dc40f

Please sign in to comment.