Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert to esm #7

Merged
merged 11 commits into from
Mar 14, 2023
2 changes: 1 addition & 1 deletion node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdown-vscode-contributions-action",
"version": "1.0.6",
"version": "1.0.7",
"description": "Github Action that updates a markdown file using the Markdown VSCode Contributions package",
"license": "MIT",
"type": "module",
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import core from "@actions/core";
import { markdownVscodeContributions } from "markdown-vscode-contributions";
import git from "./helpers/git.js";
import fs from "fs";

async function run() {
try {
Expand Down