diff --git a/.eslintrc.json b/.eslintrc.json index 6153f20bc..dda52a61d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -53,7 +53,7 @@ }, "overrides": [ { - "files": ["*.spec.ts", "**/test_utils/*.ts"], + "files": ["*.spec.ts", "**/test_utils/*.ts", "*.js", "*.cjs"], "rules": { "@typescript-eslint/no-non-null-assertion": "off", "no-console": "off" diff --git a/ci/publish.js b/ci/publish.js index ea1579008..009a0af6c 100644 --- a/ci/publish.js +++ b/ci/publish.js @@ -1,8 +1,8 @@ +import cp from "child_process"; import fs from "fs"; import path from "path"; -import cp from "child_process"; -import { promisify } from "util"; import { fileURLToPath } from "url"; +import { promisify } from "util"; const PACKAGE_JSON = "package.json"; // hack to get __dirname @@ -45,7 +45,7 @@ async function run() { `npm publish --workspace ${info.workspace} --tag latest --access public` ); console.info( - `Successfully published ${info.name} with version ${info.version}.` + `Successfully published ${info.workspace} with version ${info.version}.` ); } catch (err) { console.error(