Skip to content

Commit 835c806

Browse files
authored
Merge pull request #15 from minchodang/fix/setup
Chore: Setup and Package meta fix
2 parents 3022ce0 + b787532 commit 835c806

File tree

6 files changed

+46
-21
lines changed

6 files changed

+46
-21
lines changed

.changeset/config.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3-
"changelog": "@changesets/cli/changelog",
4-
"commit": false,
5-
"fixed": [],
6-
"linked": [],
7-
"access": "restricted",
8-
"baseBranch": "main",
9-
"updateInternalDependencies": "patch",
10-
"ignore": []
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
1111
}

.vscode/settings.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
2-
"eslint.workingDirectories": [
3-
{
4-
"mode": "auto"
5-
}
6-
]
2+
"eslint.workingDirectories": [
3+
{
4+
"mode": "auto"
5+
}
6+
],
7+
"conventionalCommits.scopes": ["Setup", "Release"]
78
}

packages/cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# simple-remote-ssh
22

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- github url update and config fix
8+
39
## 0.1.1
410

511
### Patch Changes

packages/cli/package.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
{
22
"name": "simple-remote-ssh",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Simple and convenient SSH connection CLI tool",
55
"author": "minchodang <[email protected]>",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/kangminsu/simple_remote_ssh.git",
8+
"url": "https://github.com/minchodang/simple_remote_ssh.git",
99
"directory": "packages/cli"
1010
},
11-
"homepage": "https://github.com/kangminsu/simple_remote_ssh#readme",
11+
"homepage": "https://github.com/minchodang/simple_remote_ssh#readme",
1212
"bugs": {
13-
"url": "https://github.com/kangminsu/simple_remote_ssh/issues"
13+
"url": "https://github.com/minchodang/simple_remote_ssh/issues"
1414
},
1515
"type": "module",
1616
"main": "dist/index.js",
17+
"types": "dist/index.d.ts",
1718
"bin": {
1819
"simple-ssh": "dist/cli.js"
1920
},
@@ -51,9 +52,12 @@
5152
"registry": "https://registry.npmjs.org/"
5253
},
5354
"files": [
54-
"dist",
55+
"dist/**/*.js",
56+
"dist/**/*.d.ts",
57+
"dist/**/*.d.ts.map",
5558
"README.md",
5659
"CHANGELOG.md",
5760
"LICENSE"
58-
]
61+
],
62+
"license": "MIT"
5963
}

packages/cli/src/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Export types for TypeScript users
2+
export * from './types/ssh.js';
3+
4+
// Export utility functions
5+
export * from './utils/config.js';
6+
7+
// Export command functions (for programmatic usage)
8+
export { connectCommand } from './commands/connect.js';
9+
export { listCommand } from './commands/list.js';
10+
export { addCommand } from './commands/add.js';
11+
export { editCommand } from './commands/edit.js';
12+
export { removeCommand } from './commands/remove.js';

packages/cli/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"moduleResolution": "node",
99
"allowSyntheticDefaultImports": true,
1010
"esModuleInterop": true,
11-
"resolveJsonModule": true
11+
"resolveJsonModule": true,
12+
"declaration": true,
13+
"declarationMap": true
1214
},
1315
"include": ["src/**/*"],
1416
"exclude": ["node_modules", "dist"]

0 commit comments

Comments
 (0)