Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Sep 13, 2023
1 parent ba186bc commit 42da558
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tasks/test-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ console.log("\n");
console.log(`Testing package version`);
const compiledPackageJson = require("../package/package.json");
if (packageJson.version === compiledPackageJson.version) {
console.log(` 🟢 [PASS] Version ${packageJson.version} is set in the package`);
console.log(
` 🟢 [PASS] Version ${packageJson.version} is set in the package`,
);
} else {
console.error(
` 🔴 [FAIL] The package version should be ${packageJson.version} but is ${compiledPackageJson.version}`,
Expand Down

0 comments on commit 42da558

Please sign in to comment.