Skip to content

Commit

Permalink
Release v3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jul 8, 2023
1 parent ea5a501 commit cca1072
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/center-key/node-slate/blob/main/LICENSE.txt)
[![npm](https://img.shields.io/npm/v/node-slate.svg)](https://www.npmjs.com/package/node-slate)
[![Vulnerabilities](https://snyk.io/test/github/center-key/node-slate/badge.svg)](https://snyk.io/test/github/center-key/node-slate)
[![Build](https://github.com/center-key/node-slate/workflows/build/badge.svg)](https://github.com/center-key/node-slate/actions/workflows/run-spec-on-push.yaml)

Features
Expand Down
2 changes: 1 addition & 1 deletion docs/js/all.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

// Imports
import { marked } from 'marked';
// import { gfmHeadingId } from "marked-gfm-heading-id";
import browserSync from 'browser-sync';
import chalk from 'chalk';
import cleanCss from 'gulp-clean-css';
Expand Down Expand Up @@ -62,7 +63,7 @@ const getPageData = () => {
const includes = config.includes
.map(include => `source/includes/${include}.md`)
.map(include => fs.readFileSync(include, 'utf-8'))
.map(include => marked(include, { renderer: renderer, mangle: false, headerIds: false }));
.map(include => marked(include, { renderer: renderer, mangle: false }));
const code = (filename) => filename.split('.')[0];
const getPageData = {
current_page: { data: config },
Expand Down
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-slate",
"version": "3.1.2",
"version": "3.1.3",
"description": "Node port of lord/slate",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -49,7 +49,7 @@
},
"dependencies": {
"browser-sync": "~2.29",
"chalk": "~5.2",
"chalk": "~5.3",
"fuse.js": "~6.6",
"gulp": "~4.0",
"gulp-clean-css": "~4.3",
Expand All @@ -63,22 +63,23 @@
"gulp-sass": "~5.1",
"gulp-size": "~4.0",
"gulp-uglify": "~3.0",
"highlight.js": "~11.7",
"highlight.js": "~11.8",
"imagesloaded": "~5.0",
"jquery": "~3.6",
"jquery": "~3.7",
"jquery-highlight": "~3.5",
"jquery-ui": "~1.13",
"jquery-ui-dist": "~1.13",
"jquery.tocify": "~1.9",
"js-yaml": "~4.1",
"jshint": "~2.13",
"marked": "~4.3",
"marked": "~5.1",
"marked-gfm-heading-id": "~3.0",
"merge-stream": "~2.0",
"rev-web-assets": "~1.0",
"rev-web-assets": "~1.2",
"rimraf": "~5.0",
"run-scripts-util": "~1.1",
"sass": "~1.62",
"run-scripts-util": "~1.2",
"sass": "~1.63",
"tocbot": "~4.21",
"w3c-html-validator": "~1.3"
"w3c-html-validator": "~1.4"
}
}

0 comments on commit cca1072

Please sign in to comment.