Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Node and dependent packages to the latest version #190

Merged
merged 8 commits into from
Sep 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ commands:

- run:
name: Prettier formatting
command: yarn format:check
command: yarn check:format

- run:
name: ESLint
Expand All @@ -77,7 +77,7 @@ commands:
name: Jest
command: yarn test:coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit
environment:
JEST_JUNIT_OUTPUT: tmp/test-results/jest.xml
JEST_JUNIT_OUTPUT_DIR: tmp/test-results

- run: yarn codecov

Expand All @@ -104,7 +104,7 @@ jobs:
test-node10:
executor:
name: node
version: '10.16.0' # Specify TLS version for development
version: '10.16.3' # Specify LTS version for development
steps:
- test

Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.16.0
v10.16.3
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
### Changed

- Update CircleCI configuration to use v2.1 ([#187](https://github.com/marp-team/marpit/pull/187))
- Bump markdown-it to [v10.0.0](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md#1000---2019-09-11) ([#190](https://github.com/marp-team/marpit/pull/190))
- Upgrade Node and dependent packages to the latest version ([#190](https://github.com/marp-team/marpit/pull/190))

### Removed

Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,69 +36,69 @@
"index.d.ts"
],
"scripts": {
"build": "yarn --mutex file run clean && babel src --out-dir lib",
"check-audit": "yarn --mutex file audit",
"build": "yarn -s clean && babel src --out-dir lib",
"check:audit": "yarn audit",
"check:format": "yarn -s run format -c",
"clean": "rimraf lib",
"docs": "npm-run-all --npm-path yarn --parallel docsify docsify:style:watch",
"docs": "run-p docsify docsify:style:watch",
"docsify": "browser-sync start -s docs -f \"docs/**/*\" --single --no-open",
"docsify:style": "node ./docsify/build.js",
"docsify:style:watch": "nodemon -q -e .scss,.js -w ./docsify ./docsify/build.js",
"format": "prettier \"**/*.{css,html,js,json,md,scss,ts,yaml,yml}\"",
"format:check": "yarn --silent --mutex file run format -c",
"jsdoc": "rimraf jsdoc && jsdoc src -c .jsdoc.json",
"lint:js": "eslint .",
"lint:css": "stylelint \"./**/*.{css,scss}\"",
"prepack": "npm-run-all --npm-path yarn --parallel check-audit format:check lint:* test:coverage --sequential build",
"preversion": "npm-run-all --npm-path yarn --parallel check-audit format:check lint:* test:coverage",
"prepack": "npm-run-all --parallel check:* lint:* test:coverage --sequential build",
"preversion": "run-p check:* lint:* test:coverage",
"test": "jest",
"test:coverage": "jest --coverage",
"version": "curl https://raw.githubusercontent.com/marp-team/actions/v1/lib/scripts/version.js | node && git add -A CHANGELOG.md",
"watch": "babel src --out-dir lib -w --verbose"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-private-methods": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/plugin-proposal-private-methods": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"autoprefixer": "^9.6.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"browser-sync": "^2.26.7",
"cheerio": "^1.0.0-rc.3",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"cross-env": "^5.2.1",
"cssnano": "^4.1.10",
"dedent": "^0.7.0",
"docsify-themeable": "^0.7.2",
"eslint": "~6.1.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"jest-junit": "^7.0.0",
"jest-junit": "^8.0.0",
"jsdoc": "^3.6.3",
"minami": "^1.2.3",
"mkdirp": "^0.5.1",
"nodemon": "^1.19.1",
"nodemon": "^1.19.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"sass": "^1.22.10",
"sass": "^1.22.12",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.9.4"
"stylelint-scss": "^3.10.1"
},
"dependencies": {
"color-string": "^1.5.3",
"js-yaml": "^3.13.0",
"lodash.kebabcase": "^4.1.1",
"markdown-it": "^9.1.0",
"markdown-it": "^10.0.0",
"markdown-it-front-matter": "^0.1.2",
"postcss": "^7.0.17"
"postcss": "^7.0.18"
},
"publishConfig": {
"access": "public"
Expand Down
Loading