Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: small improvements for package.json run scripts #812

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 0 additions & 12 deletions .idea/runConfigurations/Compile_scripts.xml

This file was deleted.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"prebuild": "pnpm run '/prebuild:.*/'",
"build": "ng build",
"build:pullRequest": "pnpm run build --configuration pullRequest,production",
"build:scripts": "cd scripts && tsc",
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"commitlint:edit-msg": "commitlint --verbose --edit",
"commitlint:last": "commitlint --verbose --last",
Expand All @@ -34,12 +35,10 @@
"lint:code": "ng lint --max-warnings 0",
"lint:commit-message": "pnpm run commitlint:edit-msg",
"lint:gh-actions": "actionlint || true",
"ng": "ng",
"prebuild:font-subsets": "tsm scripts/src/generate-font-subsets.ts",
"prebuild:release-file": "tsx scripts/src/generate-release-file.mts",
"prebuild:render-templates": "tsm scripts/src/generate-templated-files.ts",
"prebuild:simple-icons": "tsm scripts/src/generate-simple-icons.ts",
"scripts:tsc": "cd scripts && tsc",
"security-txt": "tsm scripts/src/generate-security-txt.ts",
"serve:ssr:@davidlj95/website": "node dist/@davidlj95/website/server/server.mjs",
"start": "ng serve",
Expand All @@ -49,8 +48,9 @@
"test": "pnpm run '/test:.*/'",
"test:components": "cypress run --component",
"test:unit": "ng test --code-coverage --watch false",
"validate-codecov-yml": "curl -X POST --data-binary @codecov.yml https://codecov.io/validate",
"validate-renovate-config": "pnpm --package renovate dlx renovate-config-validator",
"validate": "pnpm run '/^validate:.*/'",
"validate:codecov-yml": "curl -X POST --data-binary @codecov.yml https://codecov.io/validate",
"validate:renovate-config": "pnpm --package renovate dlx renovate-config-validator",
"watch": "ng build --watch --configuration development"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions scripts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"strict": true,
"skipLibCheck": true,
// -- Our configs
"noEmit": true,
"lib": ["esnext"],
"outDir": "dist",
//👇 So we can use imports without extension with ESM
Expand Down
Loading