Skip to content

Commit e9b1bfc

Browse files
committed
New version released : 1.0.163
1 parent a871aff commit e9b1bfc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1688
-1606
lines changed

.ToDo

Lines changed: 7 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,7 @@
1-
API 문서화 -- 참조 : https://typedoc.org/guides/doccomments/
2-
3-
로고/프로젝트 카드 작성
4-
5-
Container 내부에서 Git 커맨드 사용 (SSH 키 써서)
6-
7-
v 1.0.163 - 변경사항
8-
메소드 오타 체크
9-
KoconutMap
10-
mapVaues -> mapValues
11-
12-
KoconutCollection
13-
substract -> subtract
14-
runningFoldindexed -> runningFoldIndexed
15-
16-
17-
18-
// Currently working on...
19-
---
20-
iterable -> maxOf // maxOfOrNull 함수에 대해서는 매뉴얼 테스트 진행 해봐야 할 듯...
21-
22-
---
23-
iterable -> minWith 부터 작업 재개
1+
API 문서화 -- 참조 : https://typedoc.org/guides/doccomments/
2+
3+
로고/프로젝트 카드 작성
4+
5+
Container 내부에서 Git 커맨드 사용 (SSH 키 써서)
6+
7+
// Currently working on...

.babelrc

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
{
2-
"presets": [
3-
"@babel/preset-env",
4-
["@babel/preset-typescript", {"allowNamespaces" : true, "modules": false}]
5-
],
6-
"plugins": [
7-
"@babel/proposal-class-properties",
8-
"@babel/proposal-object-rest-spread",
9-
"@babel/syntax-dynamic-import",
10-
"@babel/plugin-transform-runtime",
11-
"@babel/transform-async-to-generator"
12-
],
13-
"comments": false
14-
}
1+
{
2+
"presets": [
3+
"@babel/preset-env",
4+
["@babel/preset-typescript", {"allowNamespaces" : true, "modules": false}]
5+
],
6+
"plugins": [
7+
"@babel/proposal-class-properties",
8+
"@babel/proposal-object-rest-spread",
9+
"@babel/syntax-dynamic-import",
10+
"@babel/plugin-transform-runtime",
11+
"@babel/transform-async-to-generator"
12+
],
13+
"comments": false
14+
}

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[**]
4+
charset = utf-8
5+
insert_final_newline = true
6+
indent_style = space
7+
indent_size = 2
8+
9+
[*.md]
10+
trim_trailing_whitespace = true

.github/workflows/manual-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
os: [ubuntu-latest] # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
13+
os: [ubuntu-latest]
1414
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]
1515

1616
steps:

.github/workflows/pipeline.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,25 @@ name: Pipeline
33
on:
44
push:
55
tags:
6-
- "*.*.*"
6+
- '*.*.*'
77

88
jobs:
99
ci:
1010
name: Continuous Integration
1111

1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, windows-latest, windows-2016, macos-latest] # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
14+
os: [
15+
# Ubuntu
16+
ubuntu-18.04,
17+
ubuntu-latest,
18+
# Windows
19+
windows-2022,
20+
windows-latest,
21+
# Mac
22+
macos-11,
23+
macos-latest,
24+
] # https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#github-hosted-runners
1525
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]
1626

1727
runs-on: ${{matrix.os}}
@@ -44,7 +54,7 @@ jobs:
4454
- name: Use Node.js v16
4555
uses: actions/setup-node@v2
4656
with:
47-
node-version: "16.x"
57+
node-version: '16.x'
4858
registry-url: https://registry.npmjs.org/
4959
- run: npm publish
5060
env:

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/node_modules
2-
Icon
3-
/log
4-
*.log
1+
/node_modules
2+
Icon
3+
/log
4+
*.log

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"singleQuote": true,
44
"tabWidth": 2,
55
"trailingComma": "all"
6-
}
6+
}

0 commit comments

Comments
 (0)