gatsby-source-notion-churnotion 1.0.71 → 1.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gatsby-node.js +4 -0
- package/package.json +4 -1
package/dist/gatsby-node.js
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.onPostBootstrap = exports.createSchemaCustomization = exports.sourceNodes = exports.onPluginInit = void 0;
|
4
|
+
require("@babel/register")({
|
5
|
+
extensions: [".js", ".ts"],
|
6
|
+
ignore: [/node_modules\/(?!kiwi-nlp)/],
|
7
|
+
});
|
4
8
|
var onPluginInit_1 = require("./onPluginInit");
|
5
9
|
Object.defineProperty(exports, "onPluginInit", { enumerable: true, get: function () { return onPluginInit_1.onPluginInit; } });
|
6
10
|
var source_nodes_1 = require("./source-nodes");
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "gatsby-source-notion-churnotion",
|
3
3
|
"description": "Gatsby plugin that can connect with One Notion Database RECURSIVELY using official API",
|
4
|
-
"version": "1.0.
|
4
|
+
"version": "1.0.73",
|
5
5
|
"skipLibCheck": true,
|
6
6
|
"license": "0BSD",
|
7
7
|
"main": "./dist/gatsby-node.js",
|
@@ -54,6 +54,9 @@
|
|
54
54
|
"typescript": "^5.7.2"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|
57
|
+
"@babel/preset-env": "^7.26.0",
|
58
|
+
"@babel/preset-typescript": "^7.26.0",
|
59
|
+
"@babel/register": "^7.25.9",
|
57
60
|
"gatsby": "^5.14.0"
|
58
61
|
},
|
59
62
|
"peerDependencies": {
|