-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
1,423 additions
and
982 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ typedoc | |
|
||
# sveltekit | ||
.svelte-kit | ||
.vercel | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ dist | |
public/build | ||
build | ||
.svelte-kit | ||
.vercel | ||
typedoc | ||
|
||
# test artifacts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ typedoc | |
|
||
# sveltekit | ||
.svelte-kit | ||
.vercel | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ dist | |
public/build | ||
build | ||
.svelte-kit | ||
.vercel | ||
typedoc | ||
|
||
# test artifacts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// managed-by-autotool | ||
|
||
import { turbowatchLocalNodeModules } from '@alexaegis/turbowatch'; | ||
import { watch } from 'turbowatch'; | ||
|
||
void (async () => { | ||
await watch( | ||
await turbowatchLocalNodeModules({ | ||
buildDependenciesScript: 'build:dependencies', | ||
devScript: 'dev_', | ||
}), | ||
); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ | |
"node": ">=18.10.0", | ||
"pnpm": ">=8.0.0" | ||
}, | ||
"packageManager": "[email protected].10", | ||
"packageManager": "[email protected].11", | ||
"workspaces": [ | ||
"apps/*", | ||
"fixtures/*", | ||
|
@@ -47,8 +47,7 @@ | |
"build": "turbo run build-lib_ build-app_ --concurrency 16 --cache-dir .cache/turbo", | ||
"build-app": "turbo run build-app_ --concurrency 16 --cache-dir .cache/turbo", | ||
"build-lib": "turbo run build-lib_ --concurrency 16 --cache-dir .cache/turbo", | ||
"build:angular": "nx run angular:build:production", | ||
"build:svelte": "nx run svelte:build:production", | ||
"dev": "pnpm run --dir apps/svelte dev", | ||
"lint": "turbo run lint_ --concurrency 16 --cache-dir .cache/turbo", | ||
"lint:css": "stylecheck", | ||
"lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --cache-dir .cache/turbo", | ||
|
@@ -75,64 +74,64 @@ | |
"release:major": "commit-and-tag-version --sign --commit-all --release-as major", | ||
"release:minor": "commit-and-tag-version --sign --commit-all --release-as minor", | ||
"release:patch": "commit-and-tag-version --sign --commit-all --release-as patch", | ||
"start": "turbo run start --filter @tinyslice/svelte-example", | ||
"start": "pnpm run --dir apps/svelte start", | ||
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo && merge-workspace-lcov-reports && lcov-viewer lcov -o ./coverage ./coverage/lcov.info", | ||
"test:jest": "jest --passWithNoTests", | ||
"typedoc": "turbo run typedoc_ --concurrency 16 --cache-dir .cache/turbo", | ||
"typedoc_": "typedoc" | ||
}, | ||
"devDependencies": { | ||
"@alexaegis/autotool-plugin-commitlint": "^0.6.1", | ||
"@alexaegis/autotool-plugin-depcheck": "^0.6.1", | ||
"@alexaegis/autotool-plugin-editorconfig": "^0.6.1", | ||
"@alexaegis/autotool-plugin-eslint": "^0.6.1", | ||
"@alexaegis/autotool-plugin-git": "^0.6.1", | ||
"@alexaegis/autotool-plugin-github": "^0.6.1", | ||
"@alexaegis/autotool-plugin-husky": "^0.6.1", | ||
"@alexaegis/autotool-plugin-ncu": "^0.6.1", | ||
"@alexaegis/autotool-plugin-prettier": "^0.6.1", | ||
"@alexaegis/autotool-plugin-publint": "^0.6.1", | ||
"@alexaegis/autotool-plugin-remark": "^0.6.1", | ||
"@alexaegis/autotool-plugin-standard-version": "^0.6.1", | ||
"@alexaegis/autotool-plugin-stylelint": "^0.6.1", | ||
"@alexaegis/autotool-plugin-svelte": "^0.6.1", | ||
"@alexaegis/autotool-plugin-ts": "^0.6.1", | ||
"@alexaegis/autotool-plugin-turbo": "^0.6.1", | ||
"@alexaegis/autotool-plugin-typedoc": "^0.6.1", | ||
"@alexaegis/autotool-plugin-vite": "^0.6.1", | ||
"@alexaegis/autotool-plugin-vitest": "^0.6.1", | ||
"@alexaegis/autotool-plugin-vscode": "^0.6.1", | ||
"@alexaegis/autotool-plugin-workspace": "^0.6.1", | ||
"@alexaegis/coverage-tools": "^0.5.0", | ||
"@alexaegis/eslint-config-core": "^0.6.1", | ||
"@alexaegis/nuke": "^0.6.1", | ||
"@alexaegis/stylelint-config": "^0.6.1", | ||
"@alexaegis/ts": "^0.6.1", | ||
"@alexaegis/autotool-plugin-commitlint": "^0.7.1", | ||
"@alexaegis/autotool-plugin-depcheck": "^0.7.1", | ||
"@alexaegis/autotool-plugin-editorconfig": "^0.7.1", | ||
"@alexaegis/autotool-plugin-eslint": "^0.7.1", | ||
"@alexaegis/autotool-plugin-git": "^0.7.1", | ||
"@alexaegis/autotool-plugin-github": "^0.7.1", | ||
"@alexaegis/autotool-plugin-husky": "^0.7.1", | ||
"@alexaegis/autotool-plugin-ncu": "^0.7.1", | ||
"@alexaegis/autotool-plugin-prettier": "^0.7.1", | ||
"@alexaegis/autotool-plugin-publint": "^0.7.1", | ||
"@alexaegis/autotool-plugin-remark": "^0.7.1", | ||
"@alexaegis/autotool-plugin-standard-version": "^0.7.1", | ||
"@alexaegis/autotool-plugin-stylelint": "^0.7.1", | ||
"@alexaegis/autotool-plugin-svelte": "^0.7.1", | ||
"@alexaegis/autotool-plugin-ts": "^0.7.1", | ||
"@alexaegis/autotool-plugin-turbo": "^0.7.1", | ||
"@alexaegis/autotool-plugin-typedoc": "^0.7.1", | ||
"@alexaegis/autotool-plugin-vite": "^0.7.1", | ||
"@alexaegis/autotool-plugin-vitest": "^0.7.1", | ||
"@alexaegis/autotool-plugin-vscode": "^0.7.1", | ||
"@alexaegis/autotool-plugin-workspace": "^0.7.1", | ||
"@alexaegis/coverage-tools": "^0.6.1", | ||
"@alexaegis/eslint-config-core": "^0.7.1", | ||
"@alexaegis/nuke": "^0.7.1", | ||
"@alexaegis/stylelint-config": "^0.7.1", | ||
"@alexaegis/ts": "^0.7.1", | ||
"@lcov-viewer/cli": "^1.3.0", | ||
"@types/eslint": "^8.44.0", | ||
"@typescript-eslint/eslint-plugin": "^6.2.0", | ||
"@typescript-eslint/parser": "^6.2.0", | ||
"@vitest/coverage-v8": "^0.33.0", | ||
"@types/eslint": "^8.44.1", | ||
"@typescript-eslint/eslint-plugin": "^6.2.1", | ||
"@typescript-eslint/parser": "^6.2.1", | ||
"@vitest/coverage-v8": "^0.34.1", | ||
"autotool": "^0.2.3", | ||
"commit-and-tag-version": "^11.2.2", | ||
"commitlint": "^17.6.7", | ||
"depcheck": "^1.4.3", | ||
"eslint": "^8.45.0", | ||
"eslint": "^8.46.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^13.2.3", | ||
"npm-check-updates": "^16.10.16", | ||
"prettier": "^3.0.0", | ||
"prettier-plugin-svelte": "^3.0.0", | ||
"npm-check-updates": "^16.10.17", | ||
"prettier": "^3.0.1", | ||
"prettier-plugin-svelte": "^3.0.3", | ||
"prettier-plugin-tailwindcss": "^0.4.1", | ||
"remark": "^14.0.3", | ||
"remark-cli": "^11.0.0", | ||
"stylelint": "^15.10.2", | ||
"svelte-check": "^3.4.6", | ||
"ts-node": "^10.9.1", | ||
"turbo": "^1.10.11", | ||
"turbo-ignore": "^1.10.9", | ||
"turbo": "^1.10.12", | ||
"turbo-ignore": "^1.10.12", | ||
"typedoc": "^0.24.8", | ||
"typescript": "^5.1.6", | ||
"vitest": "^0.33.0" | ||
"vitest": "^0.34.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ typedoc | |
|
||
# sveltekit | ||
.svelte-kit | ||
.vercel | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ dist | |
public/build | ||
build | ||
.svelte-kit | ||
.vercel | ||
typedoc | ||
|
||
# test artifacts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ typedoc | |
|
||
# sveltekit | ||
.svelte-kit | ||
.vercel | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ dist | |
public/build | ||
build | ||
.svelte-kit | ||
.vercel | ||
typedoc | ||
|
||
# test artifacts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ typedoc | |
|
||
# sveltekit | ||
.svelte-kit | ||
.vercel | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ dist | |
public/build | ||
build | ||
.svelte-kit | ||
.vercel | ||
typedoc | ||
|
||
# test artifacts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.