Skip to content

Commit

Permalink
Merge pull request #7 from marp-team/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade Node and dependent packages to the latest version
  • Loading branch information
yhatt authored Jun 5, 2019
2 parents 2766180 + e20f124 commit 2e33af5
Show file tree
Hide file tree
Showing 5 changed files with 960 additions and 779 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ references:
&& ln -snf /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg \
&& rm yarn-v$YARN_VERSION.tar.gz'
environment:
YARN_VERSION: 1.15.2
YARN_VERSION: 1.16.0

- checkout

Expand Down Expand Up @@ -62,25 +62,25 @@ references:

version: 2
jobs:
'10.15.3':
current:
<<: *base
docker:
- image: circleci/node:10.15.3
- image: circleci/node:10.16.0

carbon:
<<: *base
docker:
- image: circleci/node:carbon

least-version:
erbium:
<<: *base
docker:
- image: circleci/node:6.14.4
- image: circleci/node:12

workflows:
version: 2
build:
jobs:
- 10.15.3
- current
- carbon
- least-version
- erbium
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.15.3
v10.16.0
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

### Breaking

- Drop support of Node 6.

### Changed

- Upgrade dependent packages to the latest ([#7](https://github.com/marp-team/marpit-svg-polyfill/pull/7))

## v0.3.0 - 2019-03-20

### Fixed
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"types/"
],
"engines": {
"node": ">=6.14.4"
"node": ">=8"
},
"jest": {
"collectCoverageFrom": [
Expand All @@ -46,46 +46,46 @@
]
},
"scripts": {
"build": "yarn --silent clean && rollup -c",
"build": "yarn -s clean && rollup -c",
"check:audit": "yarn audit",
"check:format": "yarn --silent format -c",
"check:format": "yarn -s format -c",
"check:ts": "tsc --noEmit",
"clean": "rimraf lib",
"format": "prettier \"**/*.{css,js,json,md,scss,ts,yaml,yml}\"",
"format:write": "yarn --silent format --write",
"format:write": "yarn -s format --write",
"lint:ts": "tslint \"{src,test}/**/*.ts\"",
"prepack": "npm-run-all --npm-path yarn --parallel check:* lint:* test:coverage --parallel build types",
"preversion": "npm-run-all --npm-path yarn --parallel check:* lint:* test:coverage",
"prepack": "npm-run-all --parallel check:* lint:* test:coverage --parallel build types",
"preversion": "run-p check:* lint:* test:coverage",
"test": "jest",
"test:coverage": "jest --coverage",
"types": "rimraf types && tsc --declaration --emitDeclarationOnly --outDir types",
"version": "curl https://raw.githubusercontent.com/marp-team/marp/master/version.js | node && git add -A CHANGELOG.md",
"watch": "rollup -w -c"
},
"devDependencies": {
"@marp-team/marpit": "^0.8.0",
"@types/jest": "^24.0.11",
"codecov": "^3.2.0",
"jest": "^24.5.0",
"jest-junit": "^6.3.0",
"@marp-team/marpit": "^1.1.0",
"@types/jest": "^24.0.13",
"codecov": "^3.5.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"rollup": "^1.6.1",
"rollup-plugin-commonjs": "^9.2.1",
"rollup": "^1.14.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript": "^1.0.0",
"ts-jest": "24.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "24.0.2",
"tslib": "^1.9.3",
"tslint": "^5.14.0",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000"
"typescript": "^3.5.1"
},
"dependencies": {
"detect-browser": "^4.1.0"
"detect-browser": "^4.5.0"
},
"peerDependencies": {
"@marp-team/marpit": ">=0.5.0"
Expand Down
Loading

0 comments on commit 2e33af5

Please sign in to comment.