framer-cms-markdown 0.0.4 → 0.0.5

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.
@@ -3,8 +3,8 @@ import process from "node:process";
3
3
  import yargs from "yargs";
4
4
  import { hideBin } from "yargs/helpers";
5
5
  import { loadConfig } from "../libs/framer/config.js";
6
- import { FramerClient, } from "../libs/framer/framer-client";
7
- import { buildCollectionItemInput, readMarkdownDocuments } from "./import";
6
+ import { FramerClient, } from "../libs/framer/framer-client.js";
7
+ import { buildCollectionItemInput, readMarkdownDocuments } from "./import.js";
8
8
  export async function runCli(argv = hideBin(process.argv)) {
9
9
  const args = await yargs(argv)
10
10
  .scriptName("markdown-to-framer")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framer-cms-markdown",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Sync's Framer CMS content from/to markdown",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -8,9 +8,9 @@ import { loadConfig } from "../libs/framer/config.js";
8
8
  import {
9
9
  FramerClient,
10
10
  type FramerCollectionItemExport,
11
- } from "../libs/framer/framer-client";
11
+ } from "../libs/framer/framer-client.js";
12
12
 
13
- import { buildCollectionItemInput, readMarkdownDocuments } from "./import";
13
+ import { buildCollectionItemInput, readMarkdownDocuments } from "./import.js";
14
14
 
15
15
  export type CliArgs = {
16
16
  token?: string;