trainfinder 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +0 -1
  2. package/package.json +13 -8
package/dist/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env node
2
- #!/usr/bin/env node
3
2
  "use strict";
4
3
  Object.defineProperty(exports, "__esModule", { value: true });
5
4
  const commander_1 = require("commander");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trainfinder",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "KTX/SRT 실시간 열차 조회 CLI 도구",
5
5
  "author": "junseok oh",
6
6
  "private": false,
@@ -8,18 +8,23 @@
8
8
  "bin": {
9
9
  "trainfinder": "./dist/index.js"
10
10
  },
11
- "files": [
12
- "dist",
13
- "README.md",
14
- "LICENSE"
15
- ],
16
11
  "scripts": {
17
- "build": "nest build && echo '#!/usr/bin/env node' | cat - dist/index.js > temp.js && mv temp.js dist/index.js && chmod +x dist/index.js",
12
+ "build": "nest build && chmod +x ./dist/index.js",
18
13
  "cli": "ts-node src/index.ts",
19
14
  "cli:build": "tsc src/index.ts --outDir dist",
20
15
  "cli:run": "node dist/index.js"
21
16
  },
22
- "keywords": ["ktx", "srt", "train", "cli"],
17
+ "keywords": [
18
+ "ktx",
19
+ "srt",
20
+ "train",
21
+ "cli"
22
+ ],
23
+ "files": [
24
+ "dist",
25
+ "README.md",
26
+ "LICENSE"
27
+ ],
23
28
  "dependencies": {
24
29
  "@nestjs/common": "^11.1.9",
25
30
  "@nestjs/config": "^4.0.2",