Skip to content

Commit

Permalink
fix: merge decorators into modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
ph-fritsche committed Dec 9, 2023
1 parent 86b287d commit ffdd1d4
Show file tree
Hide file tree
Showing 22 changed files with 1,876 additions and 1,370 deletions.
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"clean": "rimraf dist",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color",
"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"",
"test": "ava",
"test": "NODE_OPTIONS='--loader=tsx' ava",
"prebuild": "pnpm run clean",
"build": "pnpm run prebuild && pnpm run rollup",
"build:built_in_module_map": "ts-node --esm script/generate-built-in-module-map.ts",
Expand Down Expand Up @@ -62,13 +62,13 @@
"@types/reserved-words": "^0.1.0",
"@types/resolve": "1.20.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@wessberg/ts-config": "2.0.3",
"@wessberg/prettier-config": "1.0.0",
"rollup-plugin-ts": "3.0.2",
"rollup-plugin-ts": "3.4.5",
"ava": "3.15.0",
"eslint": "^8.17.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
Expand All @@ -84,9 +84,9 @@
"sandhog": "^2.0.2",
"semver": "7.3.7",
"standard-changelog": "^2.0.27",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "4.7.3",
"tsx": "^4.6.2",
"typescript": "5.3.3",
"typescript-3-2-1": "npm:[email protected]",
"typescript-3-3-1": "npm:[email protected]",
"typescript-3-4-1": "npm:[email protected]",
Expand All @@ -101,7 +101,8 @@
"typescript-4-3-5": "npm:[email protected]",
"typescript-4-4-2": "npm:[email protected]",
"typescript-4-5-4": "npm:[email protected]",
"typescript-4-6-4": "npm:[email protected]"
"typescript-4-6-4": "npm:[email protected]",
"typescript-4-7-3": "npm:[email protected]"
},
"dependencies": {
"@wessberg/stringutil": "^1.0.19",
Expand Down Expand Up @@ -149,7 +150,7 @@
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
"--loader=tsx"
],
"environmentVariables": {
"FORCE_COLOR": "3"
Expand Down
Loading

0 comments on commit ffdd1d4

Please sign in to comment.