Skip to content

Commit

Permalink
Move examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mpppk committed Jan 1, 2025
1 parent c51764d commit d939f58
Show file tree
Hide file tree
Showing 24 changed files with 13 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions pkgs/examples/package.json → examples/misc/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"scripts": {
"format": "prettier --write .",
"format": "prettier --write ",
"watch:type-check": "npx tsc --noEmit --watch",
"test": "run-p test:*",
"test:lint": "eslint .",
"test:format": "prettier --check .",
"test:lint": "eslint ",
"test:format": "prettier --check ",
"test:type-check": "tsc --noEmit",
"ex:express:zod:server": "tsx express/zod/express.ts",
"ex:express:zod:client": "tsx express/zod/fetch.ts",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 3 additions & 1 deletion pkgs/examples/tsconfig.json → examples/misc/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"exclude": ["../docs"],
"exclude": [
"../../pkgs/docs"
],
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
"dev": "node_modules/.bin/vite",
"build": "tsc && node_modules/.bin/vite build",
"preview": "node_modules/.bin/vite preview"
},
"devDependencies": {
"rollup-plugin-visualizer": "^5.12.0",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,7 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
"include": [
"src"
]
}
File renamed without changes.
2 changes: 1 addition & 1 deletion pkgs/typed-api-spec/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const dRef = ["src/index.ts", "examples/**/*"];
const dRef = ["src/index.ts", "misc/**/*"];
const depRules = [
{
module: "src/express",
Expand Down

0 comments on commit d939f58

Please sign in to comment.