Skip to content

Commit 207e880

Browse files
author
wayne-kim
committed
Spaces have been added and the "NPM script" has been translated.
1 parent 5a8282d commit 207e880

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

docs/ko/npm_scripts.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,43 @@
11
# NPM Scripts
22

3-
To help eliminate redundant tasks around the development process, please take note of some of the NPM scripts available to you. The following commands should be ran from your project's root directory. And of course, you can run any of the below commands using `yarn run <command>`.
3+
개발 프로세스에 대한 중복 작업을 제거하려면, 사용 가능한 NPM 스크립트 중 일부를 기록해 두세요. 다음 명령은 프로젝트의 루트 디렉토리에서 실행해야합니다. `yarn run <command>`를 사용하여 아래 명령어 중 하나를 실행할 수도 있습니다.
44

55
### `npm run build`
66

7-
Build your app for production and package. More info can be found in the [**Building Your App**](building_your_app.md) section.
7+
프로덕션과 패키지 용 앱을 빌드 합니다. 더 자세한 정보는 [**Building Your App**](building_your_app.md) 섹션을 참조하세요.
88

99
### `npm run dev`
1010

11-
Run app in development.
11+
개발 중인 앱을 실행합니다.
1212

1313
### `npm run lint`
1414

15-
Lint all your `src/`'s and `test/`'s JS & Vue component files.
15+
모든 `src/``test/` JS & Vue component 파일을 Lint 합니다.
1616

1717
### `npm run lint:fix`
1818

19-
Lint all your `src/`'s and `test/`'s JS & Vue component files and attempt to fix issues.
19+
모든 `src/``test/` JS & Vue component 파일을 Lint하고 문재 해결을 시도합니다.
2020

2121
### `npm run pack`
2222

23-
Run both `npm run pack:main` & `npm run pack:renderer`. Although these commands are available, there are not many cases where you will need to manually do this as `npm run build` will handle this step.
23+
`npm run pack:main` & `npm run pack:renderer` 둘 다 실행합니다. 이러한 명령어를 사용 할 수 있지만, `npm run build`로 이 단계를 처리 할 때 수동으로 수행하는 경우는 많지 않습니다.
2424

2525
### `npm run pack:main`
2626

27-
Run webpack to bundle `main` process source code.
27+
`main` 프로세스 소스 코드를 번들하기 위해 webpack을 실행합니다.
2828

2929
### `npm run pack:renderer`
3030

31-
Run webpack to bundle `renderer` process source code.
31+
`renderer` 프로세스 소스 코드를 번들하기 위해 webpack을 실행합니다.
3232

3333
### `npm run unit`
3434

35-
Run unit tests with Karma + Jasmine. More information on [**Unit Testing**](unittesting.md).
35+
Karma와 Jasmine로 단위 테스트를 실행합니다. 자세한 내용은 [**Unit Testing**](unittesting.md)를 참조하세요.
3636

3737
### `npm run e2e`
3838

39-
Run end-to-end tests with Spectron + Mocha. More information on [**End-to-end Testing**](end-to-end_testing.md).
39+
Spectron + Mocha로 end-to-end 테스트를 실행합니다. 자세한 내용은 [**End-to-end Testing**](end-to-end_testing.md)를 참조하세요.
4040

4141
### `npm test`
4242

43-
Runs both `npm run unit` & `npm run e2e`. More information on [**Testing**](testing.md).
44-
43+
`npm run unit` & `npm run e2e` 둘 다 실행합니다. 자세한 내용은 [**Testing**](testing.md)을 참조하세요.

docs/ko/project_structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ electron-vue 프로젝트 구조는 Electron App을 만들 때와 조금 다릅
55

66
### 단일 `package.json` 설정
77

8-
예전에는 두 개의 `package.json` 설정이 필요 했지만 [@electron-userland](https://github.com/electron-userland)의 노력 덕분에 [`electron-packager`](https://github.com/electron-userland/electron-packager)[`electron-builder`](https://github.com/electron-userland/electron-builder) 둘다 지금은 완전히 단일 `package.json` 설정을 지원합니다.
8+
예전에는 두 개의 `package.json` 설정이 필요 했지만 [@electron-userland](https://github.com/electron-userland)의 노력 덕분에 [`electron-packager`](https://github.com/electron-userland/electron-packager)[`electron-builder`](https://github.com/electron-userland/electron-builder) 둘 다 지금은 완전히 단일 `package.json` 설정을 지원합니다.
99

1010
#### `dependencies`
1111

0 commit comments

Comments
 (0)