Skip to content

Commit

Permalink
Merge pull request #110 from xpadev-net/develop
Browse files Browse the repository at this point in the history
release: v0.2.72
  • Loading branch information
xpadev-net authored Aug 14, 2024
2 parents 2291e76 + ca5b299 commit f7642ae
Show file tree
Hide file tree
Showing 27 changed files with 2,596 additions and 2,948 deletions.
34 changes: 0 additions & 34 deletions .eslintrc.js

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/pr-test-reviewdog.yml

This file was deleted.

16 changes: 16 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://biomejs.dev/schemas/1.7.1/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"enabled": true,
"indentStyle": "space"
}
}
4 changes: 1 addition & 3 deletions lint-staged.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
export default {
"src/**/*.{ts,tsx,json,scss,css}": [
() => "npm run eslint:fix",
() => "npm run check-types",
() => "npm run format",
() => "npm run lint:fix",
],
};
38 changes: 16 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xpadev-net/niconicomments",
"version": "0.2.71",
"version": "0.2.72",
"description": "NiconiComments is a comment drawing library that is somewhat compatible with the official Nico Nico Douga player.",
"main": "dist/bundle.js",
"types": "dist/bundle.d.ts",
Expand All @@ -12,12 +12,12 @@
"typedoc": "typedoc --entryPointStrategy Expand --out ./docs/type/ ./src/",
"prepublishOnly": "npm run build",
"check-types": "npx tsc --noEmit --jsx react",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --check \"src/**/*.{tsx,ts,js,json,css,scss}\"",
"format:fix": "prettier --write \"src/**/*.{tsx,ts,js,json,css,scss}\"",
"lint": "npm run format&&npm run eslint&&npm run check-types",
"lint:fix": "npm run format:fix&&npm run eslint:fix&&npm run check-types",
"eslint": "biome lint src",
"eslint:fix": "biome lint --write src",
"format": "biome format src",
"format:fix": "biome format --write src",
"lint": "biome check src",
"lint:fix": "biome check --apply-unsafe src",
"prepare": "husky install",
"test": "docker-compose run --rm pw",
"test-server": "http-server"
Expand Down Expand Up @@ -45,34 +45,28 @@
"homepage": "https://xpadev-net.github.io/niconicomments/",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@playwright/test": "^1.41.2",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@biomejs/biome": "1.7.1",
"@playwright/test": "^1.43.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@types/node": "^20.12.7",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"rollup": "^4.14.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript-paths": "^1.5.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.8",
"typedoc": "^0.25.13",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.3.3",
"valibot": "^0.28.1"
"typescript": "^5.4.5",
"valibot": "^0.30.0"
}
}
Loading

0 comments on commit f7642ae

Please sign in to comment.