Skip to content

Commit b8883ca

Browse files
committed
New version released : 1.0.166
1 parent cc69ab9 commit b8883ca

File tree

86 files changed

+20096
-6470
lines changed

Some content is hidden

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

86 files changed

+20096
-6470
lines changed

.devcontainer/Dockerfile

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/typescript-node/.devcontainer/base.Dockerfile
2-
3-
# [Choice] Node.js version: 16, 14, 12
4-
ARG VARIANT="16-buster"
5-
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
6-
7-
# [Optional] Uncomment this section to install additional OS packages.
8-
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
9-
# && apt-get -y install --no-install-recommends <your-package-list-here>
10-
11-
# [Optional] Uncomment if you want to install an additional version of node using nvm
12-
# ARG EXTRA_NODE_VERSION=10
13-
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
14-
15-
# [Optional] Uncomment if you want to install more global node packages
16-
# RUN su node -c "npm install -g <your-package-list -here>"
1+
ARG NODE_VERSION
2+
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${NODE_VERSION}
3+
ARG NPM_VERSION
4+
5+
# Install Global NPM Dependencies
6+
RUN npm install -g \
7+
npm@${NPM_VERSION}
8+
9+
# Install APT Deps
10+
RUN apt update -y \
11+
&& apt install -y \
12+
yarn

.devcontainer/devcontainer.json

Lines changed: 11 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,14 @@
1-
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2-
// https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/typescript-node
31
{
4-
"name": "Koconut DevContainer",
5-
"build": {
6-
"dockerfile": "Dockerfile",
7-
"args": {
8-
"VARIANT": "16"
9-
}
10-
},
11-
12-
// Set *default* container specific settings.json values on container create.
13-
"settings": {},
14-
15-
16-
// Add the IDs of extensions you want installed when the container is created.
2+
"name": "Dev Container - Koconut",
3+
"dockerComposeFile": "docker-compose.yml",
4+
"service": "workspace",
5+
"workspaceFolder": "/workspace",
176
"extensions": [
18-
"dbaeumer.vscode-eslint"
7+
"dbaeumer.vscode-eslint",
8+
"editorconfig.editorconfig",
9+
"hoovercj.vscode-power-mode",
10+
"esbenp.prettier-vscode"
1911
],
20-
21-
"forwardPorts": [5000],
22-
23-
// Use 'postCreateCommand' to run commands after the container is created.
24-
// "postCreateCommand": "yarn install",
25-
26-
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
27-
"remoteUser": "node"
28-
}
12+
"postCreateCommand": "sudo chown node node_modules"
13+
}
14+

.devcontainer/docker-compose.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: '3.8'
2+
3+
services:
4+
workspace:
5+
container_name: koconut_devContainer
6+
build:
7+
context: ..
8+
dockerfile: .devcontainer/Dockerfile
9+
args:
10+
NODE_VERSION: 16
11+
NPM_VERSION: '8.13.1'
12+
13+
volumes:
14+
- ..:/workspace:cached
15+
- koconut-node_modules:/workspace/node_modules
16+
17+
command: sleep infinity
18+
ports:
19+
- 5000:5000
20+
user: node
21+
22+
volumes:
23+
koconut-node_modules:

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
# Change-Log
22

3+
## Release **v1.0.166**
4+
5+
<div style="text-align: right; font-weight : bold; color : orange">
6+
04 Jul 2022
7+
</div>
8+
9+
### Bug Fixes and Other Changes
10+
11+
- All the package-deps updated
12+
313
## Release **v1.0.165**
414

515
<div style="text-align: right; font-weight : bold; color : orange">
616
22 Dec 2021
717
</div>
818

9-
### Buf Fixes and Other Changes
19+
### Bug Fixes and Other Changes
1020

1121
- You can use koconut in browser env with [bower](https://bower.io/)
1222
- To install, type

coverage/browser/browser.spec.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/components/KoconutOption.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,4 @@ exports.KoconutOption = KoconutOption;
5555
'doesDeprecationWarningShowCallStack',
5656
true,
5757
);
58+
(0, _defineProperty2['default'])(KoconutOption, '_locale', void 0);

dist/components/KoconutPrimitive.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ var KoconutPrimitive = (function () {
3636
var data =
3737
arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
3838
(0, _classCallCheck2['default'])(this, KoconutPrimitive);
39+
(0, _defineProperty2['default'])(this, 'data', void 0);
40+
(0, _defineProperty2['default'])(this, 'prevYieldable', void 0);
41+
(0, _defineProperty2['default'])(this, 'processor', void 0);
3942
(0, _defineProperty2['default'])(this, 'isValidated', false);
4043
this.data = data;
4144
}

dist/components/container/KoconutIterable.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,11 @@ var KoconutIterable = (function (_KoconutPrimitive) {
165165
}
166166

167167
_this = _super.call.apply(_super, [this].concat(args));
168+
(0, _defineProperty2['default'])(
169+
(0, _assertThisInitialized2['default'])(_this),
170+
'combinedDataWrapper',
171+
void 0,
172+
);
168173
(0, _defineProperty2['default'])(
169174
(0, _assertThisInitialized2['default'])(_this),
170175
'mSize',

dist/components/container/collection/sequence/KoconutSequence.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ var Sequence = (function () {
325325
_regenerator['default'].mark(function _callee2(index) {
326326
var fetchedResult;
327327
var _this$mLastPrevIndex;
328+
var _this$mLastPrevIndex2;
328329
var result;
329330

330331
return _regenerator['default'].wrap(
@@ -388,13 +389,15 @@ var Sequence = (function () {
388389
((0, _classPrivateFieldSet2['default'])(
389390
this,
390391
_mLastPrevIndex,
391-
(_this$mLastPrevIndex = +(0,
392+
((_this$mLastPrevIndex = (0,
392393
_classPrivateFieldGet2['default'])(
393394
this,
394395
_mLastPrevIndex,
395-
)) + 1,
396+
)),
397+
(_this$mLastPrevIndex2 = _this$mLastPrevIndex++),
398+
_this$mLastPrevIndex),
396399
),
397-
_this$mLastPrevIndex),
400+
_this$mLastPrevIndex2),
398401
fetchedResult,
399402
);
400403

dist/components/tool/KoconutDeprecation.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,11 @@ exports.KoconutDeprecation = KoconutDeprecation;
333333
'isRunningOnDevUnitTesting',
334334
false,
335335
);
336+
(0, _defineProperty2['default'])(
337+
KoconutDeprecation,
338+
'devDeprecationListSet',
339+
void 0,
340+
);
336341
(0, _defineProperty2['default'])(
337342
KoconutDeprecation,
338343
'devDeprecationListTmpDirPath',

0 commit comments

Comments
 (0)