Skip to content

Commit

Permalink
New version released : 1.0.163
Browse files Browse the repository at this point in the history
  • Loading branch information
ApexCaptain committed Dec 13, 2021
1 parent a871aff commit e9b1bfc
Show file tree
Hide file tree
Showing 48 changed files with 1,688 additions and 1,606 deletions.
30 changes: 7 additions & 23 deletions .ToDo
Original file line number Diff line number Diff line change
@@ -1,23 +1,7 @@
API 문서화 -- 참조 : https://typedoc.org/guides/doccomments/

로고/프로젝트 카드 작성

Container 내부에서 Git 커맨드 사용 (SSH 키 써서)

v 1.0.163 - 변경사항
메소드 오타 체크
KoconutMap
mapVaues -> mapValues

KoconutCollection
substract -> subtract
runningFoldindexed -> runningFoldIndexed



// Currently working on...
---
iterable -> maxOf // maxOfOrNull 함수에 대해서는 매뉴얼 테스트 진행 해봐야 할 듯...

---
iterable -> minWith 부터 작업 재개
API 문서화 -- 참조 : https://typedoc.org/guides/doccomments/

로고/프로젝트 카드 작성

Container 내부에서 Git 커맨드 사용 (SSH 키 써서)

// Currently working on...
28 changes: 14 additions & 14 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"presets": [
"@babel/preset-env",
["@babel/preset-typescript", {"allowNamespaces" : true, "modules": false}]
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
"@babel/syntax-dynamic-import",
"@babel/plugin-transform-runtime",
"@babel/transform-async-to-generator"
],
"comments": false
}
{
"presets": [
"@babel/preset-env",
["@babel/preset-typescript", {"allowNamespaces" : true, "modules": false}]
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
"@babel/syntax-dynamic-import",
"@babel/plugin-transform-runtime",
"@babel/transform-async-to-generator"
],
"comments": false
}
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[**]
charset = utf-8
insert_final_newline = true
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = true
2 changes: 1 addition & 1 deletion .github/workflows/manual-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

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

steps:
Expand Down
16 changes: 13 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,25 @@ name: Pipeline
on:
push:
tags:
- "*.*.*"
- '*.*.*'

jobs:
ci:
name: Continuous Integration

strategy:
matrix:
os: [ubuntu-latest, windows-latest, windows-2016, macos-latest] # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
os: [
# Ubuntu
ubuntu-18.04,
ubuntu-latest,
# Windows
windows-2022,
windows-latest,
# Mac
macos-11,
macos-latest,
] # https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#github-hosted-runners
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]

runs-on: ${{matrix.os}}
Expand Down Expand Up @@ -44,7 +54,7 @@ jobs:
- name: Use Node.js v16
uses: actions/setup-node@v2
with:
node-version: "16.x"
node-version: '16.x'
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
Expand Down
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/node_modules
Icon
/log
*.log
/node_modules
Icon
/log
*.log
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
}
}
Loading

0 comments on commit e9b1bfc

Please sign in to comment.