Skip to content

Commit 015fc25

Browse files
authored
Merge pull request #10 from upsetjs/release/v2.3.3
Release v2.3.3
2 parents 0ef0267 + e832b7a commit 015fc25

File tree

9 files changed

+3196
-3032
lines changed

9 files changed

+3196
-3032
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: 'github-actions'
5+
directory: '/'
6+
schedule:
7+
interval: 'monthly'
8+
target-branch: 'dev'
9+
labels:
10+
- 'dependencies'
11+
- 'chore'
12+
- package-ecosystem: 'npm'
13+
directory: '/'
14+
schedule:
15+
interval: 'monthly'
16+
target-branch: 'dev'
17+
labels:
18+
- 'dependencies'
19+
- 'chore'

.yarn/releases/yarn-4.0.2.cjs

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

.yarn/releases/yarn-4.2.2.cjs

Lines changed: 894 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1 @@
1-
packageExtensions:
2-
eslint-config-airbnb-typescript@*:
3-
dependencies:
4-
eslint-config-airbnb-base: "*"
5-
eslint-module-utils@*:
6-
dependencies:
7-
eslint-import-resolver-node: "*"
8-
9-
yarnPath: .yarn/releases/yarn-4.0.2.cjs
1+
yarnPath: .yarn/releases/yarn-4.2.2.cjs

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bubblesets-js",
33
"description": "JavaScript implementation of bubble sets by Christopher Collins",
4-
"version": "2.3.2",
4+
"version": "2.3.3",
55
"author": {
66
"name": "Samuel Gratzl",
77
"email": "[email protected]",
@@ -38,37 +38,37 @@
3838
"src/**/*.ts"
3939
],
4040
"devDependencies": {
41-
"@babel/core": "^7.23.7",
42-
"@babel/preset-env": "^7.23.8",
41+
"@babel/core": "^7.24.7",
42+
"@babel/preset-env": "^7.24.7",
4343
"@rollup/plugin-babel": "^6.0.4",
44-
"@rollup/plugin-commonjs": "^25.0.7",
44+
"@rollup/plugin-commonjs": "^26.0.1",
4545
"@rollup/plugin-node-resolve": "^15.2.3",
46-
"@rollup/plugin-replace": "^5.0.5",
46+
"@rollup/plugin-replace": "^5.0.7",
4747
"@rollup/plugin-typescript": "^11.1.6",
48-
"@types/jest": "^29.5.11",
49-
"@typescript-eslint/eslint-plugin": "^6.19.0",
50-
"@typescript-eslint/parser": "^6.19.0",
51-
"@yarnpkg/sdks": "^3.1.0",
52-
"eslint": "^8.56.0",
53-
"eslint-config-airbnb-typescript": "^17.1.0",
48+
"@types/jest": "^29.5.12",
49+
"@typescript-eslint/eslint-plugin": "^7.12.0",
50+
"@typescript-eslint/parser": "^7.12.0",
51+
"@yarnpkg/sdks": "^3.1.2",
52+
"eslint": "^8.57.0",
53+
"eslint-config-airbnb-typescript": "^18.0.0",
5454
"eslint-config-prettier": "^9.1.0",
5555
"eslint-config-react-app": "^7.0.1",
5656
"eslint-plugin-flowtype": "^8.0.3",
5757
"eslint-plugin-import": "^2.29.1",
5858
"eslint-plugin-jsx-a11y": "^6.8.0",
5959
"eslint-plugin-prettier": "^5.1.3",
60-
"eslint-plugin-react": "^7.33.2",
61-
"eslint-plugin-react-hooks": "^4.6.0",
60+
"eslint-plugin-react": "^7.34.2",
61+
"eslint-plugin-react-hooks": "^4.6.2",
6262
"jest": "^29.7.0",
63-
"prettier": "^3.2.4",
64-
"rimraf": "^5.0.5",
65-
"rollup": "^4.9.6",
66-
"rollup-plugin-dts": "^6.1.0",
63+
"prettier": "^3.3.1",
64+
"rimraf": "^5.0.7",
65+
"rollup": "^4.18.0",
66+
"rollup-plugin-dts": "^6.1.1",
6767
"rollup-plugin-terser": "^7.0.2",
68-
"ts-jest": "^29.1.1",
69-
"tslib": "^2.6.2",
70-
"typedoc": "^0.25.7",
71-
"typescript": "^5.3.3"
68+
"ts-jest": "^29.1.4",
69+
"tslib": "^2.6.3",
70+
"typedoc": "^0.25.13",
71+
"typescript": "^5.4.5"
7272
},
7373
"resolutions": {
7474
"@typescript-eslint/eslint-plugin": "^6.19.0",
@@ -80,9 +80,9 @@
8080
"start": "yarn run watch",
8181
"watch": "rollup -c -w",
8282
"build": "rollup -c",
83-
"test": "jest --passWithNoTests",
84-
"test:watch": "jest --passWithNoTests --watch",
85-
"test:coverage": "jest --passWithNoTests --coverage",
83+
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --passWithNoTests --detectOpenHandles --forceExit",
84+
"test:watch": "yarn run test --watch",
85+
"test:coverage": "yarn run test --coverage",
8686
"lint": "yarn run eslint && yarn run prettier",
8787
"fix": "yarn run eslint:fix && yarn run prettier:write",
8888
"prettier:write": "prettier \"*\" \"*/**\" --write",
@@ -92,5 +92,5 @@
9292
"docs": "typedoc src/index.ts",
9393
"prepare": "yarn run build"
9494
},
95-
"packageManager": "yarn@4.0.2"
95+
"packageManager": "yarn@4.2.2"
9696
}

tsconfig.c.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"outDir": "build",
55
"declaration": true,
66
"declarationMap": true,
7-
"noEmit": false,
7+
"noEmit": true,
88
"composite": true
99
}
1010
}

tsconfig.eslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "./tsconfig.c.json",
3-
"include": ["src/**/*.ts", "src/**/*.tsx", "*.js"]
3+
"include": ["src/**/*.ts", "src/**/*.tsx", "*.js", "docs/**/*.ts"]
44
}

tsconfig.json

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2019",
3+
"target": "ES2018",
44
"module": "ESNext",
5-
"lib": ["DOM", "ES2019"],
5+
"lib": ["DOM", "ES2020"],
66
"importHelpers": false,
77
"declaration": false,
88
"sourceMap": true,
99
"strict": true,
1010
"removeComments": true,
11-
"verbatimModuleSyntax": true,
11+
"verbatimModuleSyntax": false,
1212
"experimentalDecorators": true,
1313
"forceConsistentCasingInFileNames": true,
1414
"strictBindCallApply": true,
@@ -26,18 +26,8 @@
2626
"noEmit": true,
2727
"paths": {
2828
"@": ["./src"],
29-
"*": ["*", "node_modules/*"],
30-
},
31-
},
32-
"include": ["src/**/*.ts", "src/**/*.tsx"],
33-
34-
"typedocOptions": {
35-
"name": "TSLibrary",
36-
"out": "./docs",
37-
"theme": "default",
38-
"excludeExternals": true,
39-
"excludePrivate": true,
40-
"includeVersion": true,
41-
"hideGenerator": true,
29+
"*": ["*", "node_modules/*"]
30+
}
4231
},
32+
"include": ["src/**/*.ts", "src/**/*.tsx", "docs/**/*.tsx"]
4333
}

0 commit comments

Comments
 (0)