Skip to content

Commit

Permalink
Convert to esm (#7)
Browse files Browse the repository at this point in the history
* fix: convert to esm

* fix: update markdown-vscode-contributions to v1.0.2

* fix: add package.json type

* fix: update version

* fix: minor import fix

* fix: update markdown-vscode-contributions to v1.0.3

* fix: add fs import
  • Loading branch information
jeronimoek authored Mar 14, 2023
1 parent 56edb9b commit 5b4ef97
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
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

0 comments on commit 5b4ef97

Please sign in to comment.