Skip to content

Commit

Permalink
புதிப்பிப்பு
Browse files Browse the repository at this point in the history
  • Loading branch information
julienmalard committed Nov 26, 2024
1 parent 00c63bd commit 0c2c5fc
Show file tree
Hide file tree
Showing 6 changed files with 2,165 additions and 2,402 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

30 changes: 0 additions & 30 deletions .eslintrc.cjs

This file was deleted.

27 changes: 27 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";

export default [
eslint.configs.recommended,
...tseslint.configs.recommended,
{
files: ["**/*.js", "**/*.ts"],
languageOptions: {
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
},
},
rules: {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
},
],
},
},
];
37 changes: 20 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,48 +2,51 @@
"name": "@lassi-js/kilimukku",
"version": "1.1.7",
"description": "விநியோகிக்கப்பட்ட மொழிபெயர்ப்புகள்",
"main": "விநியோகம்/மூலம்/குறியீட்டு.js",
"main": "விநியோகம்/குறியீட்டு.js",
"scripts": {
"தூயமைப்படுத்து": "rimraf விநியோகம்",
"தொகுப்பு": "pnpm புதுப்பிப்பு && pnpm வடிவூட்டம் && pnpm தூயமைப்படுத்து && pnpm tspc -p tsconfig.json",
"தொகுப்பு:உற்பத்தி": "pnpm புதுப்பிப்பு && pnpm தூயமைப்படுத்து && pnpm tspc -p tsconfig.build.json",
"சோதனை:கணு": "pnpm தொகுப்பு && pnpm aegir test -t node -f \"விநியோகம்/சோதனை/**/*.சோதனை.{js,cjs,mjs}\" --cov -- --exit",
"சோதனை:உலாவி": "pnpm தொகுப்பு && pnpm aegir test -t browser -f \"விநியோகம்/சோதனை/**/*.சோதனை.{js,cjs,mjs}\" --cov",
"சோதனை:எதிர்மின்னி-மத்தியமானது": "pnpm தொகுப்பு && pnpm aegir test -t electron-main -f \"விநியோகம்/சோதனை/**/*.சோதனை.{js,cjs,mjs}\" --cov",
"சோதனை:எதிர்மின்னி-வழங்கியது": "pnpm தொகுப்பு && pnpm aegir test -t electron-renderer -f \"விநியோகம்/சோதனை/**/*.சோதனை.{js,cjs,mjs}\" --cov",
"சோதனை": "pnpm சோதனை:கணு && pnpm சோதனை:உலாவி",
"வடிவூட்டம்": "pnpm prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" && pnpm eslint --ext .js,.ts மூலம் சோதனை",
"வெளியிடு": "pnpm சோதனை && (git commit -a -m 'பதிப்பு' || true) && pnpm publish",
"வடிவூட்டம்": "pnpm prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" && pnpm eslint மூலம் சோதனை",
"வெளியிடு": "pnpm சோதனை && pnpm தொகுப்பு:உற்பத்தி && (git commit -a -m 'பதிப்பு' || true) && pnpm publish",
"புதுப்பிப்பு": "pnpm genversion --es6 --semi மூலம்/பதிப்பு.ts"
},
"keywords": [],
"author": "Julien Jean Malard-Adam",
"license": "AGPL-3.0-or-later",
"type": "module",
"dependencies": {
"@constl/ipa": "^1.4.4",
"@constl/utils-ipa": "^1.0.3",
"@lassi-js/kili": "^0.3.14",
"uuid": "^11.0.0",
"@constl/ipa": "^1.4.5",
"@constl/utils-ipa": "^1.0.4",
"@lassi-js/kili": "^0.4.1",
"uuid": "^11.0.3",
"wherearewe": "^2.0.1"
},
"devDependencies": {
"@constl/utils-tests": "^1.6.3",
"@types/mocha": "^10.0.6",
"@constl/utils-tests": "^1.6.5",
"@eslint/js": "^9.15.0",
"@types/mocha": "^10.0.10",
"@types/uuid": "^10.0.0",
"aegir": "^45.0.0",
"aegir": "^45.0.2",
"browserify-fs": "^1.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.57.0",
"crypto-browserify": "^3.12.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"genversion": "^3.2.0",
"mocha": "^10.4.0",
"mocha": "^10.8.2",
"os-browserify": "^0.3.0",
"prettier": "^3.2.5",
"prettier": "^3.4.0",
"process": "^0.11.10",
"rimraf": "^6.0.0",
"ts-patch": "^3.1.2",
"rimraf": "^6.0.1",
"ts-patch": "^3.2.1",
"typescript": "5.6.3",
"typescript-transform-paths": "^3.4.7"
"typescript-eslint": "^8.16.0",
"typescript-transform-paths": "^3.5.2"
}
}
Loading

0 comments on commit 0c2c5fc

Please sign in to comment.