Skip to content

Commit 521a00b

Browse files
committed
Upgrade deps, including [email protected]
1 parent 50c00ba commit 521a00b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@
3737
"compatibility": ">=0.5.4"
3838
},
3939
"devDependencies": {
40-
"@11ty/eleventy": "^2.0.1",
41-
"ava": "^5.2.0",
42-
"markdown-it": "^13.0.1"
40+
"@11ty/eleventy": "^3.0.0",
41+
"ava": "^6.2.0",
42+
"markdown-it": "^14.1.0"
4343
},
4444
"dependencies": {
45-
"prismjs": "^1.29.0"
45+
"prismjs": "^1.30.0"
4646
},
4747
"ava": {
4848
"environmentVariables": {},

test/EleventyTest.js renamed to test/EleventyTest.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const test = require("ava");
2-
const Eleventy = require('@11ty/eleventy');
1+
import test from "ava";
2+
import Eleventy from '@11ty/eleventy';
33

44
test("Diff output escaped #75", async t => {
55
let elev = new Eleventy("./test/issue-75/", "./test/issue-75/_site/", {
@@ -12,7 +12,7 @@ test("Diff output escaped #75", async t => {
1212
<pre class="language-diff-html"><code class="language-diff-html"><span class="token deleted-sign deleted language-html"><span class="token prefix deleted">-</span><span class="token tag"><span class="token tag"><span class="token punctuation">&lt;</span>p</span><span class="token punctuation">></span></span>Hello<span class="token tag"><span class="token tag"><span class="token punctuation">&lt;/</span>p</span><span class="token punctuation">></span></span></span></code></pre>`);
1313
});
1414

15-
test.only("diff-javascript #80", async t => {
15+
test("diff-javascript #80", async t => {
1616
let elev = new Eleventy("./test/issue-80/", "./test/issue-80/_site/", {
1717
configPath: "./test/issue-80/.eleventy.js"
1818
});

test/JavaScriptFunctionTest.js renamed to test/JavaScriptFunctionTest.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const test = require("ava");
2-
const Eleventy = require('@11ty/eleventy');
1+
import test from "ava";
2+
import Eleventy from '@11ty/eleventy';
33

44
test("JavaScript Function", async t => {
55
let elev = new Eleventy("./test/11tyjs-test/", "./test/11tyjs-test/_site/", {

0 commit comments

Comments
 (0)