From 42f92d90a969462b11c5faa398e0403a607336e7 Mon Sep 17 00:00:00 2001 From: Rafael Bardini Date: Mon, 2 Sep 2024 01:03:57 +0200 Subject: [PATCH] docs(editor): fix schema import --- editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor.js b/editor.js index 90edf96..04a7a82 100644 --- a/editor.js +++ b/editor.js @@ -2,9 +2,9 @@ import { indentWithTab } from '@codemirror/commands' import { json } from '@codemirror/lang-json' import { oneDark } from '@codemirror/theme-one-dark' import { EditorView, keymap } from '@codemirror/view' +import resume from '@jsonresume/schema/sample.resume.json' with { type: 'json' } import { basicSetup } from 'codemirror' import { debounce } from 'debounce' -import resume from 'resume-schema/sample.resume.json' with { type: 'json' } import './editor.css' import { render } from './index.js'