Sorted Package Files

This commit is contained in:
Christopher Allford 2023-11-02 14:01:22 -07:00
parent ab209bff91
commit ea67b99607
2 changed files with 13 additions and 13 deletions

View File

@ -26,15 +26,15 @@
],
"sideEffects": false,
"scripts": {
"turbo:build": "tsc --project tsconfig.json",
"prepare": "composer install",
"changelog": "composer exec -- changelogger",
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
"lint": "eslint --output-file eslint_report.json --format json src",
"start": "tsc --project tsconfig.json --watch",
"changelog": "composer exec -- changelogger",
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
"lint": "eslint --output-file eslint_report.json --format json src",
"lint:fix": "eslint src --fix",
"prepack": "pnpm run clean && pnpm run build"
"prepack": "pnpm run clean && pnpm run build",
"prepare": "composer install",
"start": "tsc --project tsconfig.json --watch",
"turbo:build": "tsc --project tsconfig.json"
},
"lint-staged": {
"*.(t|j)s?(x)": [

View File

@ -28,17 +28,17 @@
"access": "public"
},
"scripts": {
"turbo:build": "pnpm run build:js && pnpm run build:css",
"prepare": "composer install",
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
"build:css": "webpack",
"build:js": "tsc --project tsconfig.json && tsc --project tsconfig-cjs.json",
"changelog": "composer exec -- changelogger",
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
"lint": "eslint --output-file eslint_report.json --format json src",
"build:js": "tsc --project tsconfig.json && tsc --project tsconfig-cjs.json",
"build:css": "webpack",
"start": "concurrently \"tsc --project tsconfig.json --watch\" \"tsc --project tsconfig-cjs.json --watch\" \"webpack --watch\"",
"lint:fix": "eslint src --fix",
"prepack": "pnpm run clean && pnpm run build",
"lint:fix": "eslint src --fix"
"prepare": "composer install",
"start": "concurrently \"tsc --project tsconfig.json --watch\" \"tsc --project tsconfig-cjs.json --watch\" \"webpack --watch\"",
"turbo:build": "pnpm run build:js && pnpm run build:css"
},
"devDependencies": {
"@types/react": "^17.0.71",