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

feat: init ark lib + tests #262

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: ci format command
  • Loading branch information
MartianGreed committed Aug 26, 2024
commit ff9f47b9ec781713f47bb8f8963e3842817ec8ac
2 changes: 1 addition & 1 deletion apps/auth-proxy/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export default [
ignores: [".nitro/**", ".output/**"],
},
...baseConfig,
];
];
1 change: 1 addition & 0 deletions apps/auth-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"clean": "git clean -xdf .cache .nitro .output .turbo .vercel node_modules",
"lint": "eslint",
"format": "prettier --check . --ignore-path ../../.gitignore",
"format:write": "prettier --check --write . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions apps/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"dev": "bun with-env next dev",
"lint": "eslint",
"format": "prettier --check \"**/*.{js,cjs,mjs,ts,tsx,md,json}\"",
"format:write": "prettier --check --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\"",
"start": "bun with-env next start",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ../../.env --",
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs/postcss.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module.exports = {
plugins: {
tailwindcss: {},
},
}
};
Loading