실습 10: NPM에 내 도구 출시

내 tol이 마침내 npm에 출시되었으며 내 설정으로 인해 어려움을 겪었습니다.

문서를 제대로 읽으십시오



나는 이 실습을 끝내기 위해 서두르고 있었지만, 그것이 실제로 나를 많이 느려지게 했습니다. 먼저 프로젝트를 빌드하기 위해 내 package,json를 변경하여 프로젝트에 들어갑니다.

"build": "tsc -p ."


그런 다음 내 도구의 진입점을 나타내기 위해 bin를 추가하거나 내 도구를 실행할 때 정확한 파일을 실행하도록 컴퓨터에 요청할 수 있습니다.

"bin": {
    "ts_ssg": "./lib/index.js"
  }


여기 문제가 온다



그래서 빌드를 실행한 다음 npm link ts_ssg를 사용하여 도구를 테스트합니다. 도구 리포지토리 내에서는 제대로 실행되지만 외부에서 실행하려고 하면 오류가 발생합니다.

Error: ENOENT: no such file or directory, copyfile 'src/styles/index.css' -> 'dist/index.css'
    at Object.copyFileSync (fs.js:2061:3)
    at Object.<anonymous> (C:\Users\Administrator\Desktop\repo\TS-SSG\lib\index.js:35:4)
    at Module._compile (internal/modules/cjs/loader.js:1085:14)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)   
    at Module.load (internal/modules/cjs/loader.js:950:32)
    at Function.Module._load (internal/modules/cjs/loader.js:790:12)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:76:12)
    at internal/main/run_main_module.js:17:47 {
  errno: -4058,
  syscall: 'copyfile',
  code: 'ENOENT',
  path: 'src/styles/index.css',
  dest: 'dist/index.css'
}


기본적으로 상대 경로를 사용 중이고 해당 경로가 상위 수준에 없기 때문에 src/styles/index.css 경로를 해결할 수 없다고 나와 있으므로 절대 경로로 전환해야하므로 내 index.ts
fs.copyFileSync(path.resolve(__dirname, '../styles/index.css'), `${outputDir}/index.css`);


또한 styles/index.css 폴더를 src 폴더 및 lib 폴더(빌드 버전)와 동일한 수준으로 이동하여 index.css 경로가 두 버전 모두에서 동일하도록 결정합니다.

그런 다음 해당 문제가 해결된 후 내 도구를 npm 에 게시하려고 할 때 2가지 다른 문제가 발생했습니다. 먼저 내 패키지에 고유한 이름이 있어야 하므로 package.json에 와서 변경했습니다.

"name": "ts_ssg"


그런 다음 두 번째 것은 새로 만든npm 계정으로 확인됩니다. 그러나 먼저 minor 를 사용하여 npm version minor 버전을 펌핑하여 테스트 버전을 먼저 업로드한 다음 git push --follow-tags 를 사용하여 내 커밋을 Github에 푸시합니다. 그럴 거라고 생각했는데 CI가 실패하고 로그를 본 후 내 빌드가 test 폴더가 비워진 상태로 나온다는 것을 인식하여 빌드를 실행할 때 __test__ 폴더를 포함하지 않도록 최종 변경했습니다. tsconfig.json
"include": ["src/*.ts"],
"exclude": ["src/__tests__"]


그런 다음 내가 그것에 대해 만족한 후 몇 가지 더 minor 버전을 게시한 다음 major 버전을 npm version major로 펌핑하기로 결정합니다. 내 도구를 테스트할 수 있습니다here

좋은 웹페이지 즐겨찾기