Skip to content

Commit

Permalink
fix(deps): ncu -u
Browse files Browse the repository at this point in the history
  • Loading branch information
bent10 committed Oct 14, 2023
1 parent 072592b commit 8a933a0
Show file tree
Hide file tree
Showing 8 changed files with 163 additions and 154 deletions.
301 changes: 155 additions & 146 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"devDependencies": {
"@types/babel__core": "^7.20.2",
"@types/moo": "^0.5.7",
"@types/react-dom": "^18.2.8",
"@types/react-dom": "^18.2.13",
"doogu": "^3.2.7",
"marked": "^9.0.3",
"marked": "^9.1.2",
"moo": "^0.5.2",
"prettier-plugin-svelte": "^3.0.3",
"pupa": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/code-format/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"format": "prettier . --write --cache-location ../../node_modules/.prettier --ignore-path ../../.prettierignore"
},
"dependencies": {
"attributes-parser": "^1.0.4"
"attributes-parser": "^2.0.0"
},
"peerDependencies": {
"marked": ">=7.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/code-format/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseAttrs } from 'attributes-parser'
import parseAttrs from 'attributes-parser'
import type { MarkedExtension } from 'marked'
import * as prettier from 'prettier'
import { ATTR_PATTERN, EXTENDED_LANG_MAP, LANG_MAP } from './constants.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/code-jsx-renderer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"dependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-react": "^7.22.15",
"attributes-parser": "^1.0.4"
"attributes-parser": "^2.0.0"
},
"peerDependencies": {
"marked": ">=7.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/code-jsx-renderer/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseAttrs } from 'attributes-parser'
import parseAttrs from 'attributes-parser'
import type { MarkedExtension } from 'marked'
import { transform } from './transform.js'
import { isPlainObject } from './utils.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/code-preview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"format": "prettier . --write --cache-location ../../node_modules/.prettier --ignore-path ../../.prettierignore"
},
"dependencies": {
"attributes-parser": "^1.0.4"
"attributes-parser": "^2.0.0"
},
"peerDependencies": {
"marked": ">=7.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/code-preview/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseAttrs } from 'attributes-parser'
import parseAttrs from 'attributes-parser'
import type { MarkedExtension } from 'marked'
import { transform } from './transformer.js'
import type { Options, Transformer } from './types.js'
Expand Down

0 comments on commit 8a933a0

Please sign in to comment.