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 dependent packages to the latest version #327

Merged
merged 4 commits into from
Mar 27, 2022
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
test-node16:
executor:
name: node
version: '16.13.1' # Specify LTS version for development
version: '16.14.2' # Specify LTS version for development
steps:
- prepare
- lint
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.13.1
16.14.2
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

### Changed

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

## v2.2.2 - 2022-01-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion docsify/_code.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
--code-block-line-height: 1.4;

// Inline
--code-inline-color: currentColor;
--code-inline-color: currentcolor;

// Copy code plugin
--copycode-background: #aaa;
Expand Down
2 changes: 1 addition & 1 deletion docsify/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $important-color: color.complement($brand-primary);
:root {
--mono-tint3: #fbfbfb;
--theme-color: #{$brand-primary};
--strong-color: currentColor;
--strong-color: currentcolor;

// Base
--base-letter-spacing: 0.25px;
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,32 +59,32 @@
"watch": "babel src --out-dir lib -w --verbose"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.16.5",
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"autoprefixer": "^10.4.2",
"autoprefixer": "^10.4.4",
"cheerio": "^1.0.0-rc.10",
"chokidar": "^3.5.3",
"cssnano": "^5.0.15",
"cssnano": "^5.1.5",
"dedent": "^0.7.0",
"docsify-themeable": "^0.8.6",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"jsdoc": "^3.6.9",
"jsdoc": "^3.6.10",
"minami": "^1.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"sass": "1.49.0",
"sass": "1.49.9",
"serve-handler": "^6.1.3",
"stylelint": "^14.2.0",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"ws": "^8.4.2"
"ws": "^8.5.0"
},
"dependencies": {
"color-string": "^1.9.0",
Expand All @@ -93,7 +93,7 @@
"lodash.kebabcase": "^4.1.1",
"markdown-it": "^12.3.2",
"markdown-it-front-matter": "^0.2.3",
"postcss": "^8.4.5"
"postcss": "^8.4.12"
},
"publishConfig": {
"access": "public"
Expand Down
Loading