Skip to content

Commit 41e7a00

Browse files
rootroot
authored andcommitted
chore: release v0.0.5
Updated ThreeJS from r121 to r125 Improved dependency management
1 parent 0611b1e commit 41e7a00

File tree

17 files changed

+6279
-10699
lines changed

17 files changed

+6279
-10699
lines changed

.eslintrc.js

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
module.exports = {
2-
"ignorePatterns": ["*.min.js", "widgets/*/lib/*.js", "gulpfile.js"],
3-
"env": {
4-
"browser": true,
5-
"es2021": true,
6-
"jquery": true
7-
},
8-
"extends": [
9-
"standard"
10-
],
11-
"parserOptions": {
12-
"ecmaVersion": 12
13-
},
14-
"rules": {
15-
"indent": ["warn", 4, { "SwitchCase": 1 }],
16-
"quotes": [
17-
"error",
18-
"double",
19-
{
20-
"avoidEscape": true,
21-
"allowTemplateLiterals": true
22-
}
23-
],
24-
"quote-props": ["error", "always"],
25-
"semi": [
26-
"error",
27-
"always"
28-
],
29-
"curly": ["warn", "multi-or-nest"],
30-
"space-before-function-paren": ["warn", "always"],
31-
"no-unused-vars": "warn"
32-
},
33-
"plugins": ["html"]
34-
};
1+
module.exports = {
2+
"ignorePatterns": ["*.min.js", "widgets/*/lib/*.js", "gulpfile.js"],
3+
"env": {
4+
"browser": true,
5+
"es2021": true,
6+
"jquery": true
7+
},
8+
"extends": [
9+
"standard"
10+
],
11+
"parserOptions": {
12+
"ecmaVersion": 12
13+
},
14+
"rules": {
15+
"indent": ["warn", 4, { "SwitchCase": 1 }],
16+
"quotes": [
17+
"error",
18+
"double",
19+
{
20+
"avoidEscape": true,
21+
"allowTemplateLiterals": true
22+
}
23+
],
24+
"quote-props": ["error", "always"],
25+
"semi": [
26+
"error",
27+
"always"
28+
],
29+
"curly": ["warn", "multi-or-nest"],
30+
"space-before-function-paren": ["warn", "always"],
31+
"no-unused-vars": "warn"
32+
},
33+
"plugins": ["html"]
34+
};

.github/auto-merge.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# Configure here which dependency updates should be merged automatically.
2-
# The recommended configuration is the following:
3-
- match:
4-
# Only merge patches for production dependencies
5-
dependency_type: production
6-
update_type: "semver:patch"
7-
- match:
8-
# Except for security fixes, here we allow minor patches
9-
dependency_type: production
10-
update_type: "security:minor"
11-
- match:
12-
# and development dependencies can have a minor update, too
13-
dependency_type: development
14-
update_type: "semver:minor"
15-
16-
# The syntax is based on the legacy dependabot v1 automerged_updates syntax, see:
1+
# Configure here which dependency updates should be merged automatically.
2+
# The recommended configuration is the following:
3+
- match:
4+
# Only merge patches for production dependencies
5+
dependency_type: production
6+
update_type: "semver:patch"
7+
- match:
8+
# Except for security fixes, here we allow minor patches
9+
dependency_type: production
10+
update_type: "security:minor"
11+
- match:
12+
# and development dependencies can have a minor update, too
13+
dependency_type: development
14+
update_type: "semver:minor"
15+
16+
# The syntax is based on the legacy dependabot v1 automerged_updates syntax, see:
1717
# https://dependabot.com/docs/config-file/#automerged_updates

.github/dependabot.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
version: 2
2-
updates:
3-
- package-ecosystem: npm
4-
directory: "/"
5-
schedule:
6-
interval: monthly
7-
time: "04:00"
8-
timezone: Europe/Berlin
9-
open-pull-requests-limit: 20
10-
assignees:
11-
- Excodibur
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: monthly
7+
time: "04:00"
8+
timezone: Europe/Berlin
9+
open-pull-requests-limit: 20
10+
assignees:
11+
- Excodibur
1212
versioning-strategy: increase
Lines changed: 67 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
1-
# For most projects, this workflow file will not need changing; you simply need
2-
# to commit it to your repository.
3-
#
4-
# You may wish to alter this file to override the set of languages analyzed,
5-
# or to provide custom queries or build logic.
6-
#
7-
# ******** NOTE ********
8-
# We have attempted to detect the languages in your repository. Please check
9-
# the `language` matrix defined below to confirm you have the correct set of
10-
# supported CodeQL languages.
11-
#
12-
name: "CodeQL"
13-
14-
on:
15-
push:
16-
branches: [ master ]
17-
pull_request:
18-
# The branches below must be a subset of the branches above
19-
branches: [ master ]
20-
schedule:
21-
- cron: '25 19 * * 2'
22-
23-
jobs:
24-
analyze:
25-
name: Analyze
26-
runs-on: ubuntu-latest
27-
28-
strategy:
29-
fail-fast: false
30-
matrix:
31-
language: [ 'javascript' ]
32-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
33-
# Learn more:
34-
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
35-
36-
steps:
37-
- name: Checkout repository
38-
uses: actions/checkout@v2
39-
40-
# Initializes the CodeQL tools for scanning.
41-
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v1
43-
with:
44-
languages: ${{ matrix.language }}
45-
# If you wish to specify custom queries, you can do so here or in a config file.
46-
# By default, queries listed here will override any specified in a config file.
47-
# Prefix the list here with "+" to use these queries and those in the config file.
48-
# queries: ./path/to/local/query, your-org/your-repo/queries@main
49-
50-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
51-
# If this step fails, then you should remove it and run the build manually (see below)
52-
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v1
54-
55-
# ℹ️ Command-line programs to run using the OS shell.
56-
# 📚 https://git.io/JvXDl
57-
58-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
59-
# and modify them (or add more) to build your code if your project
60-
# uses a compiled language
61-
62-
#- run: |
63-
# make bootstrap
64-
# make release
65-
66-
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v1
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL"
13+
14+
on:
15+
push:
16+
branches: [ master ]
17+
pull_request:
18+
# The branches below must be a subset of the branches above
19+
branches: [ master ]
20+
schedule:
21+
- cron: '25 19 * * 2'
22+
23+
jobs:
24+
analyze:
25+
name: Analyze
26+
runs-on: ubuntu-latest
27+
28+
strategy:
29+
fail-fast: false
30+
matrix:
31+
language: [ 'javascript' ]
32+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
33+
# Learn more:
34+
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
35+
36+
steps:
37+
- name: Checkout repository
38+
uses: actions/checkout@v2
39+
40+
# Initializes the CodeQL tools for scanning.
41+
- name: Initialize CodeQL
42+
uses: github/codeql-action/init@v1
43+
with:
44+
languages: ${{ matrix.language }}
45+
# If you wish to specify custom queries, you can do so here or in a config file.
46+
# By default, queries listed here will override any specified in a config file.
47+
# Prefix the list here with "+" to use these queries and those in the config file.
48+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
49+
50+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
51+
# If this step fails, then you should remove it and run the build manually (see below)
52+
- name: Autobuild
53+
uses: github/codeql-action/autobuild@v1
54+
55+
# ℹ️ Command-line programs to run using the OS shell.
56+
# 📚 https://git.io/JvXDl
57+
58+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
59+
# and modify them (or add more) to build your code if your project
60+
# uses a compiled language
61+
62+
#- run: |
63+
# make bootstrap
64+
# make release
65+
66+
- name: Perform CodeQL Analysis
67+
uses: github/codeql-action/analyze@v1

.travis.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
os:
2-
- linux
3-
- osx
4-
- windows
5-
language: node_js
6-
node_js:
7-
- '10'
8-
- '12'
9-
- '14'
10-
env:
11-
- CXX=g++-6
12-
addons:
13-
apt:
14-
sources:
15-
- ubuntu-toolchain-r-test
16-
packages:
17-
- g++-6
18-
before_install:
19-
- 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then CC=gcc-6; fi'
20-
- 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then CC=g++-6; fi'
21-
before_script:
22-
- export NPMVERSION=$(echo "$($(which npm) -v)"|cut -c1)
23-
- 'if [[ $NPMVERSION == 5 ]]; then npm install -g npm; fi'
24-
- npm -v
25-
script:
1+
os:
2+
- linux
3+
- osx
4+
- windows
5+
language: node_js
6+
node_js:
7+
- '10'
8+
- '12'
9+
- '14'
10+
env:
11+
- CXX=g++-6
12+
addons:
13+
apt:
14+
sources:
15+
- ubuntu-toolchain-r-test
16+
packages:
17+
- g++-6
18+
before_install:
19+
- 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then CC=gcc-6; fi'
20+
- 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then CC=g++-6; fi'
21+
before_script:
22+
- export NPMVERSION=$(echo "$($(which npm) -v)"|cut -c1)
23+
- 'if [[ $NPMVERSION == 5 ]]; then npm install -g npm; fi'
24+
- npm -v
25+
script:
2626
- 'npm run test:package'

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Placeholder for the next version (add instead of version-number-headline below):
44
## __WORK IN PROGRESS__
55
-->
6+
## 0.0.5 (2021-02-18)
7+
* Updated ThreeJS from r121 to r125
8+
* Improved dependency management
9+
610
## 0.0.4 (2021-02-09)
711
* Added clickable-object behaviour
812
* Improved switchable lights

0 commit comments

Comments
 (0)