forked from JosuaKrause/bubblesets-js
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from upsetjs/release/v2.3.4
Release v2.3.4
- Loading branch information
Showing
15 changed files
with
3,531 additions
and
5,634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Dependabot auto-merge | ||
on: | ||
pull_request: | ||
branches: | ||
- 'dev' # only into dev | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
dependabot: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'sgratzl/boxplots' | ||
steps: | ||
- name: Dependabot metadata | ||
id: metadata | ||
uses: dependabot/fetch-metadata@v2 | ||
with: | ||
github-token: '${{ secrets.GITHUB_TOKEN }}' | ||
- name: Enable auto-merge for Dependabot PRs | ||
# patch only | ||
if: steps.metadata.outputs.update-type == 'version-update:semver-patch' | ||
run: gh pr merge --auto --merge "$PR_URL" | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
yarnPath: .yarn/releases/yarn-4.2.2.cjs | ||
yarnPath: .yarn/releases/yarn-4.5.1.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// @ts-check | ||
|
||
import eslint from '@eslint/js'; | ||
import tseslint from 'typescript-eslint'; | ||
import prettier from 'eslint-plugin-prettier'; | ||
|
||
export default tseslint.config(eslint.configs.recommended, ...tseslint.configs.recommended, { | ||
plugins: { prettier }, | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'max-classes-per-file': 'off', | ||
'no-underscore-dangle': 'off', | ||
'import/extensions': 'off', | ||
}, | ||
}); | ||
|
||
// import path from "node:path"; | ||
// import { fileURLToPath } from "node:url"; | ||
// import js from "@eslint/js"; | ||
// import { FlatCompat } from "@eslint/eslintrc"; | ||
|
||
// const __filename = fileURLToPath(import.meta.url); | ||
// const __dirname = path.dirname(__filename); | ||
// const compat = new FlatCompat({ | ||
// baseDirectory: __dirname, | ||
// recommendedConfig: js.configs.recommended, | ||
// allConfig: js.configs.all | ||
// }); | ||
|
||
// export default [...fixupConfigRules(compat.extends( | ||
// "airbnb-typescript", | ||
// "react-app", | ||
// "plugin:prettier/recommended", | ||
// "prettier", | ||
// )), { | ||
// plugins: { | ||
// prettier: fixupPluginRules(prettier), | ||
// }, | ||
|
||
// languageOptions: { | ||
// ecmaVersion: 5, | ||
// sourceType: "script", | ||
|
||
// parserOptions: { | ||
// project: "./tsconfig.eslint.json", | ||
// }, | ||
// }, | ||
|
||
// settings: { | ||
// react: { | ||
// version: "99.99.99", | ||
// }, | ||
// }, | ||
|
||
// rules: { | ||
// "@typescript-eslint/no-explicit-any": "off", | ||
// "max-classes-per-file": "off", | ||
// "no-underscore-dangle": "off", | ||
// "import/extensions": "off", | ||
// }, | ||
// }]; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "bubblesets-js", | ||
"description": "JavaScript implementation of bubble sets by Christopher Collins", | ||
"version": "2.3.3", | ||
"version": "2.3.4", | ||
"author": { | ||
"name": "Samuel Gratzl", | ||
"email": "[email protected]", | ||
|
@@ -32,65 +32,63 @@ | |
"unpkg": "build/index.umd.min.js", | ||
"jsdelivr": "build/index.umd.min.js", | ||
"types": "build/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": "./build/index.js", | ||
"require": "./build/index.cjs", | ||
"scripts": "./build/index.umd.min.js", | ||
"types": "./build/index.d.ts" | ||
} | ||
}, | ||
"sideEffects": false, | ||
"files": [ | ||
"build", | ||
"src/**/*.ts" | ||
], | ||
"devDependencies": { | ||
"@babel/core": "^7.24.7", | ||
"@babel/preset-env": "^7.24.7", | ||
"@babel/core": "^7.25.8", | ||
"@babel/preset-env": "^7.25.8", | ||
"@eslint/js": "^9.13.0", | ||
"@rollup/plugin-babel": "^6.0.4", | ||
"@rollup/plugin-commonjs": "^26.0.1", | ||
"@rollup/plugin-node-resolve": "^15.2.3", | ||
"@rollup/plugin-replace": "^5.0.7", | ||
"@rollup/plugin-typescript": "^11.1.6", | ||
"@types/jest": "^29.5.12", | ||
"@typescript-eslint/eslint-plugin": "^7.12.0", | ||
"@typescript-eslint/parser": "^7.12.0", | ||
"@yarnpkg/sdks": "^3.1.2", | ||
"eslint": "^8.57.0", | ||
"eslint-config-airbnb-typescript": "^18.0.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-config-react-app": "^7.0.1", | ||
"eslint-plugin-flowtype": "^8.0.3", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-jsx-a11y": "^6.8.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-react": "^7.34.2", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"jest": "^29.7.0", | ||
"prettier": "^3.3.1", | ||
"rimraf": "^5.0.7", | ||
"rollup": "^4.18.0", | ||
"@rollup/plugin-commonjs": "^28.0.1", | ||
"@rollup/plugin-node-resolve": "^15.3.0", | ||
"@rollup/plugin-replace": "^6.0.1", | ||
"@rollup/plugin-typescript": "^12.1.1", | ||
"@vitest/coverage-v8": "^2.1.3", | ||
"@yarnpkg/sdks": "^3.2.0", | ||
"eslint": "^9.13.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"jsdom": "^25.0.1", | ||
"prettier": "^3.3.3", | ||
"rimraf": "^6.0.1", | ||
"rollup": "^4.24.0", | ||
"rollup-plugin-dts": "^6.1.1", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"ts-jest": "^29.1.4", | ||
"tslib": "^2.6.3", | ||
"typedoc": "^0.25.13", | ||
"typescript": "^5.4.5" | ||
}, | ||
"resolutions": { | ||
"@typescript-eslint/eslint-plugin": "^6.19.0", | ||
"@typescript-eslint/parser": "^6.19.0" | ||
"ts-jest": "^29.2.5", | ||
"tslib": "^2.8.0", | ||
"typedoc": "^0.26.10", | ||
"typescript": "^5.6.3", | ||
"typescript-eslint": "^8.10.0", | ||
"vite": "^5.4.9", | ||
"vitest": "^2.1.3" | ||
}, | ||
"scripts": { | ||
"clean": "rimraf build docs node_modules \"*.tgz\" \"*.tsbuildinfo\" \"samples/*.js\" \"samples/*.map\"", | ||
"clean": "rimraf --glob build node_modules \"*.tgz\" \"*.tsbuildinfo\"", | ||
"compile": "tsc -b tsconfig.c.json", | ||
"start": "yarn run watch", | ||
"watch": "rollup -c -w", | ||
"build": "rollup -c", | ||
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --passWithNoTests --detectOpenHandles --forceExit", | ||
"test": "vitest --passWithNoTests", | ||
"test:watch": "yarn run test --watch", | ||
"test:coverage": "yarn run test --coverage", | ||
"lint": "yarn run eslint && yarn run prettier", | ||
"fix": "yarn run eslint:fix && yarn run prettier:write", | ||
"prettier:write": "prettier \"*\" \"*/**\" --write", | ||
"prettier": "prettier \"*\" \"*/**\" --check", | ||
"eslint": "eslint src --ext .ts,.tsx", | ||
"eslint": "eslint src --cache", | ||
"eslint:fix": "yarn run eslint --fix", | ||
"docs": "typedoc src/index.ts", | ||
"docs": "typedoc --options typedoc.json", | ||
"prepare": "yarn run build" | ||
}, | ||
"packageManager": "yarn@4.2.2" | ||
"packageManager": "yarn@4.5.1" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"$schema": "https://typedoc.org/schema.json", | ||
"entryPoints": ["./src"], | ||
"exclude": ["**/*.spec.ts"], | ||
"name": "bubblesets-js", | ||
"out": "./docs/", | ||
"readme": "none", | ||
"theme": "default", | ||
"excludeExternals": true, | ||
"excludeInternal": true, | ||
"excludePrivate": true, | ||
"includeVersion": true, | ||
"categorizeByGroup": true, | ||
"cleanOutputDir": true, | ||
"hideGenerator": true | ||
} |
Oops, something went wrong.