Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ In the styleguide/structure/_node-files folder you will find the code that:

- Start Harp
- Start Livereload
- Writes the current date to styleguide/_data.json file (on start and compile)
- Write the current date to styleguide/_data.json file (on start and compile)
- Concatenate all modules javascript code into one file in styleguide/assets/scripts/styleguide.js
- Concatenate all modules stylesheet code into one file in styleguide/assets/styles/styleguide.js

Expand Down
12 changes: 12 additions & 0 deletions LICENSE in korean
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
MIT 라이센스 (MIT)

Copyright(c) 2015 Huge Inc.

사용, 복사, 수정, 병합 할 수있는 권한을 포함하되 이에 국한되지 않고 소프트웨어를 취급하기 위해 이 소프트웨어 및 관련 문서 파일
(이하 "소프트웨어")의 사본을 얻는 모든 사람에게 사용 권한이 무료로 부여됩니다.
다음 조건에 따라 소프트웨어의 사본을 게시, 배포, 재 라이센스 및 / 또는 판매 할 수 있고 소프트웨어를 제공받는 사람에게 허용 할 수 있습니다.

위의 저작권 고지 및 이 허가 고지는 소프트웨어의 모든 사본 또는 상당 부분에 포함되어야합니다.

본 소프트웨어는 " 있는 그대로"제공되며, 명시적이거나 묵시적인 보증 없이 특정 목적에 대한 적합성, 적합성을 포함합니다. 어떠한 경우에도,
다른 소프트웨어나 저작권 소유자는 장애, 손해 또는 기타 책임이 있는 연결, 계약 또는 계약 관련 소프트웨어에 대해 책임을 지지 않습니다.
57 changes: 57 additions & 0 deletions README in Korean
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
스타일 가이드

스타일 가이드를 쉽게 만들고 유지 관리 할 수있는 도구입니다.
##### v2.0.8

다운로드, 시작하는 방법 및 자세한 설명서는 Styleguide 웹 사이트 를 참조하십시오.

도움이 되는 정보

Node.js
Harp.js
Node Livereload
Node Watch

주어진 정보들
1 - Start.app 파일을 사용하려면 등록되지 않은 응용 프로그램을 실행해야합니다. Settings > Security & Privacy에서 할 수 있습니다.

2 - 컴파일 된 오프라인 버전은 Chrome에서 더 작은 문제가 있습니다. Chrome에는 file : // 프로토콜에 따라 iframe과의 통신을 허용하지
않는 보안 정책이 있으므로 이러한 통신이 필요한 모든 상호 작용은 제거됩니다 (기본적으로 사이드 바 메뉴).
이것은 오프라인으로 컴파일 된 버전에만 해당됩니다.

3 - Mac 사용자이면 Start.app를 실행 한 후에 다음 오류가 발생합니다.

npm ERR! Please try running this command again as root/Administrator.

sudo 또는 root 권한을 가진 Node를 설치했을 것입니다. 다음 명령을 사용하여 .npm 폴더에 대한 사용 권한을 수정해야합니다.

sudo chown -R $(whoami) ~/.npm
sudo chown -R $(whoami) /usr/local/lib/node_modules

그런 다음 Start.app을 다시 실행하십시오.

4 - Xcode가 설치되어 있지만 라이센스에 동의하지 않은 경우이 오류가 발생합니다.

Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.

Xcode를 열고 라이선스를 수락 한 다음 Start.app를 다시 실행하십시오.

5 - 404 - No data received error가 있다면, 포트 충돌이있을 수 있고, 포트 번호를 변경할 수있는 두 가지 방법이 있습니다 (기본값은 9241 ).

styleguide / structure / _node-files / watch.js에서 PORT 변수 변경

환경 변수 (PORT 또는 STYLEGUIDE_PORT)를 설정하십시오.

스타일 가이드를 수동으로 실행하는 경우 마지막 단계에서 다음을 수행 할 수 있습니다.

PORT=7000 node watch.js
또는
STYLEGUIDE_PORT=7000 node watch.js

Start.app는 자체 포함되어 있으며 보안상의 이유로 외부 변수에 접근 할 수 없습니다. Start.app의 포트를 변경하려면 watch.js 파일을 변경하는
것이 좋습니다. 원하는 경우 .bashrc 파일에 변수를 추가하면 Start.app에서 변수를 사용할 수 있습니다.

touch ~/.bashrc
echo 'export PORT=1234' >> ~/.bashrc
또는
echo 'export STYLEGUIDE_PORT=1234' >> ~/.bashrc
6 changes: 3 additions & 3 deletions styleguide/modules/2_colors/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $blue: #2fbbf9;
}

.bg-black {
background-color: $black;
background-color: $;
}

.bg-grey {
Expand All @@ -36,12 +36,12 @@ $blue: #2fbbf9;
left: 0.9375em;
}
.color {
height: 120px;
height: 130px;
margin-right: 0.9375em;
}

&:last-child {
margin-right: 0;
}
}
}
}