Skip to content

Commit

Permalink
Relative paths (#12)
Browse files Browse the repository at this point in the history
* fix: make paths relative

* bump version

* fix: github action paths

* add import
  • Loading branch information
jeronimoek authored Mar 14, 2023
1 parent 421f299 commit 642847e
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.11",
"version": "1.0.12",
"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 path from "path";
import fs from "fs";

async function run() {
Expand Down

0 comments on commit 642847e

Please sign in to comment.