Skip to content

Commit

Permalink
changing dependency from @karuga/rehype-inline to just rehype-inline
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-knoebl committed Nov 13, 2019
1 parent e178ec6 commit 1e43da4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion demo/demo_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const remarkParse = require("remark-parse");
const remarkRehype = require("remark-rehype");
const rehypeRaw = require("rehype-raw");
const rehypeHighlight = require("rehype-highlight");
const rehypeInline = require("@karuga/rehype-inline");
const rehypeInline = require("rehype-inline");
const rehypeStringify = require("rehype-stringify");

const slides = require("../slides.js");
Expand Down
2 changes: 1 addition & 1 deletion demo/demos.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const remarkParse = require("remark-parse");
const remarkRehype = require("remark-rehype");
const rehypeRaw = require("rehype-raw");
const rehypeHighlight = require("rehype-highlight");
const rehypeInline = require("@karuga/rehype-inline");
const rehypeInline = require("rehype-inline");
const rehypeStringify = require("rehype-stringify");

const slides = require("../slides.js");
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"unified": "^8.4.0"
},
"devDependencies": {
"@karuga/rehype-inline": "^1.0.0",
"jest": "^24.9.0",
"rehype-format": "^3.0.0",
"rehype-highlight": "^3.0.0",
"rehype-inline": "^1.2.2",
"rehype-minify-whitespace": "^3.0.0",
"rehype-raw": "^4.0.1",
"rehype-stringify": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const remarkParse = require("remark-parse");
const remarkRehype = require("remark-rehype");
const rehypeRaw = require("rehype-raw");
const rehypeHighlight = require("rehype-highlight");
const rehypeInline = require("@karuga/rehype-inline");
const rehypeInline = require("rehype-inline");
const rehypeStringify = require("rehype-stringify");

const slides = require("@karuga/slides");
Expand Down
2 changes: 1 addition & 1 deletion slides.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const markdown = require("remark-parse");
const remarkRehype = require("remark-rehype");
const html = require("rehype-stringify");
const minifyWhitespace = require("rehype-minify-whitespace");
const rehypeInline = require("@karuga/rehype-inline");
const rehypeInline = require("rehype-inline");

const slides = require("./slides.js");

Expand Down

0 comments on commit 1e43da4

Please sign in to comment.