Skip to content

Commit 0cf75ec

Browse files
committed
Merge branch 'release/0.8.0' into released
2 parents df4b51f + 6e86851 commit 0cf75ec

File tree

187 files changed

+7869
-3688
lines changed

Some content is hidden

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

187 files changed

+7869
-3688
lines changed

.circleci/config.yml

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

.eslintrc

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"no-bitwise": "error",
1515
"no-new-wrappers": "error",
1616
"constructor-super": "error",
17-
"no-redeclare": "error",
1817
"no-eval": "error",
1918
"no-template-curly-in-string": "error",
2019
"no-return-await": "error",
@@ -28,9 +27,13 @@
2827
"@typescript-eslint/strict-boolean-expressions": [
2928
2,
3029
{
31-
"allowNullable": true,
32-
"allowSafe": true,
33-
"ignoreRhs": true
30+
"allowString": false,
31+
"allowNumber": false,
32+
"allowNullableObject": true,
33+
"allowNullableBoolean": false,
34+
"allowNullableString": false,
35+
"allowNullableNumber": false,
36+
"allowAny": false
3437
}
3538
]
3639
}

.github/workflows/nodejs.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Use Node.js (LTS)
15+
uses: actions/setup-node@v2-beta
16+
- uses: DimensionDev/github-token-action@latest
17+
with:
18+
registry: true
19+
- name: Install
20+
run: npx pnpm install --frozen-lockfile
21+
# - name: Test
22+
# run: npm run test:ci
23+
- name: Publish to GitHub Package (unstable)
24+
run: ./scripts/publish-to-github.sh

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
# temp file
66
/temp
77
.rpt2_cache
8+
*.tsbuildinfo
9+
test-extension/kit.*
810

911
# dependencies
10-
/node_modules
12+
node_modules
1113

1214
# testing
1315
/coverage

.npmignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
/.vscode
33
/.circleci
44

5-
# use less build output
6-
/umd/**/*.ts
7-
/umd/**/*.ts.map
5+
/test-extension
86

97
# can be regenerated
108
/api-documents

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ Toolkit for developing Augmented Virtuality.
1010

1111
[API Documentation](./api-documents/kit.md)
1212

13+
## Using unstable version
14+
15+
<https://github.com/DimensionDev/Holoflows-Kit/packages/318460>
16+
17+
```bash
18+
npm config set "@dimensiondev:registry" "https://npm.dimension.im"
19+
npm install @dimensiondev/holoflows-kit
20+
```
21+
1322
## License
1423

1524
@holoflows/kit is published as [AGPL](./LICENSE).
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [@holoflows/kit](./kit.md) &gt; [assertEnvironment](./kit.assertenvironment.md) &gt; [allOf](./kit.assertenvironment.allof.md)
4+
5+
## assertEnvironment.allOf variable
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
allOf: (...args: Environment[]) => void[]
11+
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [@holoflows/kit](./kit.md) &gt; [assertEnvironment](./kit.assertenvironment.md)
4+
5+
## assertEnvironment namespace
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
export declare namespace assertEnvironment
11+
```
12+
13+
## Variables
14+
15+
| Variable | Description |
16+
| --- | --- |
17+
| [allOf](./kit.assertenvironment.allof.md) | |
18+
| [oneOf](./kit.assertenvironment.oneof.md) | |
19+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [@holoflows/kit](./kit.md) &gt; [assertEnvironment](./kit.assertenvironment.md) &gt; [oneOf](./kit.assertenvironment.oneof.md)
4+
5+
## assertEnvironment.oneOf variable
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
oneOf: (...args: Environment[]) => void
11+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [@holoflows/kit](./kit.md) &gt; [assertNotEnvironment](./kit.assertnotenvironment.md) &gt; [allOf](./kit.assertnotenvironment.allof.md)
4+
5+
## assertNotEnvironment.allOf variable
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
allOf: (...args: Environment[]) => void[]
11+
```

0 commit comments

Comments
 (0)