Skip to content

Commit

Permalink
v3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Dec 31, 2019
1 parent 41ebb2d commit 8fc4ffd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A pack of [Eleventy](https://github.com/11ty/eleventy) plugins for syntax highli
Available on [npm](https://www.npmjs.com/package/@11ty/eleventy-plugin-syntaxhighlight).

```
npm install @11ty/eleventy-plugin-syntaxhighlight --save
npm install @11ty/eleventy-plugin-syntaxhighlight --save-dev
```

Open up your Eleventy config file (probably `.eleventy.js`) and use `addPlugin`:
Expand Down
20 changes: 15 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "@11ty/eleventy-plugin-syntaxhighlight",
"version": "2.0.3",
"version": "3.0.0",
"description": "A pack of Eleventy plugins for syntax highlighting for Markdown and Liquid templates.",
"publishConfig": {
"access": "public"
},
"main": ".eleventy.js",
"scripts": {
"test": "npx ava",
Expand All @@ -11,6 +14,10 @@
"type": "git",
"url": "git+https://github.com/11ty/eleventy-plugin-syntaxhighlight.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin"
Expand All @@ -24,12 +31,15 @@
"bugs": {
"url": "https://github.com/11ty/eleventy-plugin-syntaxhighlight/issues"
},
"homepage": "https://github.com/11ty/eleventy-plugin-syntaxhighlight#readme",
"homepage": "https://www.11ty.dev/docs/plugins/syntaxhighlight/",
"peerDependencies": {
"@11ty/eleventy": "^0.9.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.6.0",
"ava": "^0.25.0"
"ava": "^0.25.0",
"@11ty/eleventy": "^0.9.0"
},
"dependencies": {
"prismjs": "^1.15.0"
"prismjs": "^1.17.1"
}
}

0 comments on commit 8fc4ffd

Please sign in to comment.