Skip to content

Commit 7075f10

Browse files
fix diplay workspace name (#1291)
Co-authored-by: Danish Arora <35004822+danisharora099@users.noreply.github.com>
1 parent 3722ae7 commit 7075f10

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
},
5454
"overrides": [
5555
{
56-
"files": ["*.spec.ts", "**/test_utils/*.ts"],
56+
"files": ["*.spec.ts", "**/test_utils/*.ts", "*.js", "*.cjs"],
5757
"rules": {
5858
"@typescript-eslint/no-non-null-assertion": "off",
5959
"no-console": "off"

ci/publish.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import cp from "child_process";
12
import fs from "fs";
23
import path from "path";
3-
import cp from "child_process";
4-
import { promisify } from "util";
54
import { fileURLToPath } from "url";
5+
import { promisify } from "util";
66

77
const PACKAGE_JSON = "package.json";
88
// hack to get __dirname
@@ -45,7 +45,7 @@ async function run() {
4545
`npm publish --workspace ${info.workspace} --tag latest --access public`
4646
);
4747
console.info(
48-
`Successfully published ${info.name} with version ${info.version}.`
48+
`Successfully published ${info.workspace} with version ${info.version}.`
4949
);
5050
} catch (err) {
5151
console.error(

0 commit comments

Comments
 (0)