Skip to content

Commit

Permalink
defect: Repair release pipeline (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
misterpotts authored Mar 21, 2023
1 parent f7dff22 commit 79f5604
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/get-includes.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const fs = require('fs');
import * as fs from "fs";
const moduleContent = fs.readFileSync('dist/module.json', 'utf8');
const moduleJson = JSON.parse(moduleContent);
console.log(moduleJson.includes.join(" "));
2 changes: 1 addition & 1 deletion .github/scripts/get-version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const fs = require('fs');
import * as fs from "fs";
const moduleContent = fs.readFileSync('dist/module.json', 'utf8');
const moduleJson = JSON.parse(moduleContent);
console.log(moduleJson.version);

0 comments on commit 79f5604

Please sign in to comment.