gatsby-transformer-javascript-frontmatter
Advanced tools
Comparing version 1.0.6-2 to 1.0.6-3
@@ -27,3 +27,4 @@ "use strict"; | ||
const createNode = actions.createNode, | ||
createParentChildLink = actions.createParentChildLink; // This only processes javascript and typescript files. | ||
createParentChildLink = actions.createParentChildLink; | ||
const fileExtsToProcess = [`js`, `jsx`, `ts`, `tsx`]; // This only processes javascript and typescript files. | ||
@@ -30,0 +31,0 @@ if (!_.includes(fileExtsToProcess, node.extension)) { |
{ | ||
"name": "gatsby-transformer-javascript-frontmatter", | ||
"description": "Gatsby transformer plugin for JavaScript to extract exports.frontmatter statically.", | ||
"version": "1.0.6-2", | ||
"version": "1.0.6-3", | ||
"author": "Jacob Bolda <me@jacobbolda.com>", | ||
@@ -25,6 +25,6 @@ "dependencies": { | ||
"scripts": { | ||
"build": "babel src --out-dir . --ignore __tests__", | ||
"build": "babel src --out-dir . --ignore **/__tests__", | ||
"prepublish": "cross-env NODE_ENV=production npm run build", | ||
"watch": "babel -w src --out-dir . --ignore __tests__" | ||
"watch": "babel -w src --out-dir . --ignore **/__tests__" | ||
} | ||
} |
7811
114