Skip to content

Commit df4b51f

Browse files
committed
Merge branch 'release/0.7.0' into released
2 parents aedeb20 + 926d45f commit df4b51f

Some content is hidden

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

58 files changed

+1532
-907
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
jobs:
77
build:
88
docker:
9-
- image: circleci/node:11.0
9+
- image: circleci/node:13.0
1010
working_directory: ~/repo
1111
steps:
1212
# build holoflows-kit
@@ -23,6 +23,7 @@ jobs:
2323
paths:
2424
- node_modules
2525
key: v1-dependencies-{{ checksum "yarn.lock" }}
26+
- run: yarn eslint
2627
- run: yarn build
2728
- save_cache:
2829
paths:
@@ -41,7 +42,7 @@ jobs:
4142
destination: /esmodule.zip
4243
test:
4344
docker:
44-
- image: circleci/node:11.0
45+
- image: circleci/node:13.0
4546
working_directory: ~/repo
4647
steps:
4748
- checkout

.env-cmdrc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"production": {
3+
"NODE_ENV": "production"
4+
},
5+
"development": {
6+
"NODE_ENV": "development"
7+
},
8+
"test": {
9+
"TS_NODE_COMPILER_OPTIONS": "{\"module\":\"commonjs\"}"
10+
}
11+
}

.eslintignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
es
2+
doc
3+
temp
4+
*.spec.ts
5+
*.test.ts
6+
umd

.eslintrc

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 2020,
4+
"sourceType": "module",
5+
"project": "./tsconfig.json"
6+
},
7+
"parser": "@typescript-eslint/parser",
8+
"plugins": ["@typescript-eslint"],
9+
"extends": [],
10+
"env": {},
11+
"rules": {
12+
"no-debugger": "error",
13+
"no-plusplus": "error",
14+
"no-bitwise": "error",
15+
"no-new-wrappers": "error",
16+
"constructor-super": "error",
17+
"no-redeclare": "error",
18+
"no-eval": "error",
19+
"no-template-curly-in-string": "error",
20+
"no-return-await": "error",
21+
"no-sparse-arrays": "error",
22+
"dot-notation": "error",
23+
"no-fallthrough": "error",
24+
"prefer-const": "error",
25+
"eqeqeq": "error",
26+
"no-extra-bind": "error",
27+
"use-isnan": "error",
28+
"@typescript-eslint/strict-boolean-expressions": [
29+
2,
30+
{
31+
"allowNullable": true,
32+
"allowSafe": true,
33+
"ignoreRhs": true
34+
}
35+
]
36+
}
37+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# @holoflows/kit · ![GitHub license](https://img.shields.io/badge/license-AGPL-blue.svg?style=flat-square) [![npm version](https://img.shields.io/npm/v/@holoflows/kit.svg?style=flat-square)](https://www.npmjs.com/package/@holoflows/kit) ![Ciecle CI](https://img.shields.io/circleci/project/github/DimensionDev/holoflows-kit.svg?style=flat-square&logo=circleci)
1+
# @holoflows/kit · ![GitHub license](https://img.shields.io/badge/license-AGPL-blue.svg?style=flat-square) [![npm version](https://img.shields.io/npm/v/@holoflows/kit.svg?style=flat-square)](https://www.npmjs.com/package/@holoflows/kit) [![Ciecle CI](https://img.shields.io/circleci/build/gh/DimensionDev/Holoflows-Kit.svg?logo=circleci&style=flat-square)](https://circleci.com/gh/DimensionDev/Holoflows-Kit)
22

3-
Toolkit for modern Webflows development.
3+
Toolkit for developing Augmented Virtuality.
44

55
## Documentation
66

api-documents/kit.asynccall.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

api-documents/kit.asyncgeneratorcall.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

api-documents/kit.eventwatcher.enablesinglemode.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

api-documents/kit.eventwatcher.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,5 @@ document.addEventListener('event', e.eventListener)
3131
3232
| Property | Modifiers | Type | Description |
3333
| --- | --- | --- | --- |
34-
| [enableSingleMode](./kit.eventwatcher.enablesinglemode.md) | | <code>() =&gt; EventWatcher&lt;T, Before, After, true&gt;</code> | Enable single mode. |
3534
| [eventListener](./kit.eventwatcher.eventlistener.md) | | <code>() =&gt; void</code> | Use this function as event listener to invoke watcher. |
3635

api-documents/kit.intervalwatcher.enablesinglemode.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)