Skip to content

Commit a3fc890

Browse files
committed
ci: fix npm pkg warning
1 parent 378d4f9 commit a3fc890

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/npm/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"license": "MIT",
1313
"preferGlobal": true,
1414
"bin": {
15-
"crowdin": "./bin/crowdin.js"
15+
"crowdin": "bin/crowdin.js"
1616
},
1717
"files": [
1818
"bin"

tests/npm/launcher.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ describe('launcher process', () => {
103103

104104
describe('launcher manifest', () => {
105105
it('declares the launcher script as the crowdin bin', () => {
106-
expect(launcherPkg.bin).toEqual({ crowdin: './bin/crowdin.js' });
106+
expect(launcherPkg.bin).toEqual({ crowdin: 'bin/crowdin.js' });
107107
expect(launcherPkg.files).toEqual(['bin']);
108108
});
109109

0 commit comments

Comments
 (0)