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

feat: Update remark to 15 #82

Merged
merged 3 commits into from
Oct 16, 2023
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
33 changes: 0 additions & 33 deletions fixtures/vacations/vacations.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,6 @@

<!--- @@inject: parts/destinations.md --->

## Amsterdam

Amsterdam is full of beautiful canals.

## Orlando

There are many amusement parks in Orlando.

## New York City

It is a wonderful place to catch a show.

## San Francisco

Do not miss out on the Golden Gate Bridge.

<!--- @@inject-end: parts/destinations.md --->

- Prices
<!--- @@inject: parts/prices.md --->
## Data
Expand All @@ -35,25 +17,10 @@ Do not miss out on the Golden Gate Bridge.

<!--- @@inject: parts/destinations.md#Amsterdam --->

## Amsterdam

Amsterdam is full of beautiful canals.

<!--- @@inject-end: parts/destinations.md#Amsterdam --->

## Code

<!--- @@inject-start: parts/code.md --->

## Example

```ts
import * as fs from 'fs/promises';
import * as path from 'path';
```

<!--- @@inject-end: parts/code.md --->

<pre>
<!--- @@inject: parts/destinations.md -->
</pre>
Expand Down
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"watch": "tsc -p . --watch",
"build:readme": "./scripts/update_readme.sh",
"coverage": "vitest run --coverage",
"clean": "rm -rf coverage dist",
"lint": "pnpm eslint && pnpm prettier",
"lint:fix": "pnpm eslint:fix && pnpm prettier:fix",
"prettier": "prettier -c .",
Expand Down Expand Up @@ -41,11 +42,11 @@
"license": "MIT",
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"@types/mdast": "^3.0.13",
"@types/mdast": "^4.0.1",
"@types/node": "^18.18.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/coverage-istanbul": "^0.34.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
Expand All @@ -64,17 +65,17 @@
"commander": "^11.1.0",
"globby": "^13.2.2",
"node-fetch": "^3.3.2",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-mdx": "^2.3.0",
"remark-parse": "^10.0.2",
"remark-stringify": "^10.0.3",
"unified": "^10.1.2",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.3",
"unist-util-is": "^6.0.0",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^5.3.7",
"vfile-reporter": "^7.0.5"
"vfile": "^6.0.1",
"vfile-reporter": "^8.1.0"
},
"files": [
"bin.mjs",
Expand Down
Loading