Skip to content

Commit

Permalink
fix: using latest dotenv-run
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Jan 10, 2024
1 parent 49cc9e7 commit 30bbec3
Show file tree
Hide file tree
Showing 12 changed files with 467 additions and 439 deletions.
10 changes: 5 additions & 5 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Instructions: Changesets automate our changelog. If you modify files in `/packag

## Checklist

Please read and apply all [contribution requirements](../CODE_OF_CONDUCT.md).
Please read and apply all [contribution requirements](https://github.com/xmlking/spectacular/blob/main/CONTRIBUTING.md).

- [ ] This PR targets the `main` branch
- [ ] Documentation reflects all relevant changes
- [ ] Branch is prefixed with: `docs/`, `feat/`, `chore/`, `fix/`
- [ ] Ensure Svelte and Typescript linting is current - run `pnpm run check`
- [ ] Ensure Prettier linting is current - run `pnpm run format`
- [ ] All test cases are passing - run `pnpm run test`
- [ ] Ensure Svelte and Typescript linting is current - run `turbo lint`
- [ ] Ensure Prettier linting is current - run `turbo format`
- [ ] All test cases are passing - run `turbo turtest`
- [ ] Includes a changeset (if relevant; see above)

### Commit message format
Expand All @@ -29,7 +29,7 @@ Commit type: [build, chore, ci, docs, feat, fix, perf, refactor, revert, style,

| Commit message | Release type |
| ---------------------------------------------------------------------------------------------------------- | ---------------- |
| `fix(module): short description of change` | Patch Release |
| `fix(module): short description of change` | Patch Release |
| `feat(module): short description of change` | Feature Release |
| `feat(module): short description of change`<br><br>`BREAKING CHANGE: Long description of what is breaking` | Breaking Release |
| `ci(module): short description of change` | Feature Release |
22 changes: 11 additions & 11 deletions apps/console-fb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"type": "module",
"scripts": {
"//FIXME": "https://github.com/HoudiniGraphql/houdini/issues/1246",
"dev": "svelte-kit sync && dotenv-run vite dev",
"dev": "dotenv-run -p .env,.secrets -- vite dev",
"dev:debug": "DEBUG=* vite dev",
"dev:sw": "SW_DEV=true vite dev",
"build": "dotenv-run vite build",
"preview": "NEXTAUTH_URL=http://localhost:4173 dotenv-run vite preview",
"build": "dotenv-run -p .env,.secrets -- vite build",
"preview": "NEXTAUTH_URL=http://localhost:4173 dotenv-run -p .env,.secrets -- vite preview",
"test": "pnpm run test:integration && pnpm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
Expand All @@ -23,7 +23,7 @@
"lint:prettier": "prettier --check .",
"lint": "concurrently pnpm:lint:*",
"generate:svelte": "svelte-kit sync",
"generate:pull-schema": "dotenv-run houdini pull-schema",
"generate:pull-schema": "dotenv-run -p .env,.secrets -- houdini pull-schema",
"generate": "concurrently pnpm:generate:*"
},
"devDependencies": {
Expand All @@ -41,19 +41,19 @@
"@spectacular/utils": "workspace:*",
"@svelte-put/resize": "3.0.0",
"@sveltejs/adapter-auto": "3.1.0",
"@sveltejs/adapter-node": "2.0.2",
"@sveltejs/adapter-node": "2.1.0",
"@sveltejs/adapter-vercel": "4.0.4",
"@sveltejs/enhanced-img": "0.1.7",
"@sveltejs/kit": "2.0.6",
"@sveltejs/kit": "2.2.0",
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@tailwindcss/container-queries": "0.1.1",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/svelte": "4.0.5",
"@types/gtag.js": "0.0.18",
"@types/js-cookie": "3.0.6",
"@types/node": "20.10.7",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"@types/node": "20.10.8",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@vercel/analytics": "1.1.1",
"@vite-pwa/sveltekit": "0.3.0",
"@vitest/coverage-v8": "1.1.3",
Expand All @@ -63,7 +63,7 @@
"cssnano": "6.0.3",
"d3-force": "3.0.0",
"d3-scale": "4.0.2",
"date-fns": "3.1.0",
"date-fns": "3.2.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-svelte": "2.35.1",
Expand All @@ -80,7 +80,7 @@
"js-cookie": "3.0.5",
"jsdom": "23.2.0",
"layercake": "8.0.2",
"msw": "2.0.12",
"msw": "2.0.13",
"postcss": "8.4.33",
"postcss-preset-env": "9.3.0",
"prettier": "3.1.1",
Expand Down
18 changes: 9 additions & 9 deletions apps/console-sc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"private": true,
"type": "module",
"scripts": {
"dev": " dotenv-run vite dev",
"build": "dotenv-run vite build",
"preview": "dotenv-run vite preview",
"dev": "dotenv-run -p .env,.secrets -- vite dev",
"build": "dotenv-run -p .env,.secrets -- vite build",
"preview": "dotenv-run -p .env,.secrets -- vite preview",
"test": "pnpm run test:integration && pnpm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
Expand All @@ -25,26 +25,26 @@
"@spectacular/utils": "workspace:*",
"@sveltejs/adapter-auto": "3.1.0",
"@sveltejs/enhanced-img": "0.1.7",
"@sveltejs/kit": "2.0.6",
"@sveltejs/kit": "2.2.0",
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.10",
"@types/eslint": "8.56.1",
"@types/node": "20.10.7",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"@types/node": "20.10.8",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@vincjo/datatables": "1.14.2",
"autoprefixer": "10.4.16",
"bits-ui": "0.13.4",
"bits-ui": "0.14.0",
"clsx": "2.1.0",
"cmdk-sv": "0.0.12",
"cssnano": "6.0.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-svelte": "2.35.1",
"formsnap": "0.4.2",
"lucide-svelte": "0.307.0",
"lucide-svelte": "0.308.0",
"postcss": "8.4.33",
"postcss-import": "16.0.0",
"postcss-load-config": "5.0.2",
Expand Down
6 changes: 3 additions & 3 deletions apps/console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"private": true,
"type": "module",
"scripts": {
"dev": "dotenv-run vite dev",
"dev": "dotenv-run -p .env,.secrets -- vite dev",
"dev:debug": "DEBUG=* vite dev",
"dev:sw": "SW_DEV=true vite dev",
"build": "dotenv-run vite build",
"preview": "dotenv-run vite preview",
"build": "dotenv-run -p .env,.secrets -- vite build",
"preview": "dotenv-run -p .env,.secrets -- vite preview",
"test": "pnpm run test:integration && pnpm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "0.3.4",
"@astrojs/starlight": "0.15.2",
"@astrojs/check": "0.4.1",
"@astrojs/starlight": "0.15.3",
"@astrojs/starlight-tailwind": "2.0.1",
"@astrojs/tailwind": "5.1.0",
"@astrojs/vercel": "6.1.3",
Expand Down
4 changes: 2 additions & 2 deletions apps/nhapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@playwright/test": "1.40.1",
"@sveltejs/adapter-auto": "3.1.0",
"@sveltejs/enhanced-img": "0.1.7",
"@sveltejs/kit": "2.0.6",
"@sveltejs/kit": "2.2.0",
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@types/js-cookie": "3.0.6",
"autoprefixer": "10.4.16",
Expand All @@ -36,7 +36,7 @@
"vitest": "1.1.3"
},
"dependencies": {
"@apollo/client": "3.8.8",
"@apollo/client": "3.8.9",
"graphql": "16.8.1",
"graphql-tag": "2.12.6",
"js-cookie": "3.0.5",
Expand Down
22 changes: 11 additions & 11 deletions apps/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"typesafe-i18n\" \"dotenv-run vite dev\"",
"dev": "concurrently \"typesafe-i18n\" \"dotenv-run -p .env,.secrets -- vite dev\"",
"dev:debug": "DEBUG=* vite dev",
"dev:sw": "SW_DEV=true vite dev",
"build": "pnpm run generate:i18n && dotenv-run vite build",
"preview": "dotenv-run vite preview",
"build": "pnpm run generate:i18n && dotenv-run -p .env,.secrets -- vite build",
"preview": "dotenv-run -p .env,.secrets -- vite preview",
"test": "pnpm run test:integration && pnpm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
Expand All @@ -33,10 +33,10 @@
"@spectacular/typescript-config": "workspace:*",
"@spectacular/utils": "workspace:*",
"@sveltejs/adapter-auto": "3.1.0",
"@sveltejs/adapter-node": "2.0.2",
"@sveltejs/adapter-node": "2.1.0",
"@sveltejs/adapter-vercel": "4.0.4",
"@sveltejs/enhanced-img": "0.1.7",
"@sveltejs/kit": "2.0.6",
"@sveltejs/kit": "2.2.0",
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/forms": "0.5.7",
Expand All @@ -45,25 +45,25 @@
"@tsparticles/slim": "3.0.3",
"@tsparticles/svelte": "3.0.0",
"@types/d3-scale": "4.0.8",
"@types/node": "20.10.7",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"@types/node": "20.10.8",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@vercel/analytics": "1.1.1",
"@vincjo/datatables": "1.14.2",
"@vitest/coverage-v8": "1.1.3",
"@xyflow/svelte": "0.0.31",
"@xyflow/svelte": "0.0.32",
"autoprefixer": "10.4.16",
"d3-array": "3.2.4",
"d3-scale": "4.0.2",
"d3-scale-chromatic": "3.0.0",
"d3-shape": "3.2.0",
"date-fns": "3.1.0",
"date-fns": "3.2.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-svelte": "2.35.1",
"formsnap": "0.4.2",
"layerchart": "0.27.1",
"lucide-svelte": "0.307.0",
"lucide-svelte": "0.308.0",
"postcss": "8.4.33",
"prettier": "3.1.1",
"prettier-plugin-svelte": "3.1.2",
Expand Down
6 changes: 3 additions & 3 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
"sharp": "0.33.1"
},
"devDependencies": {
"@astrojs/check": "0.3.4",
"@astrojs/check": "0.4.1",
"@astrojs/mdx": "2.0.3",
"@astrojs/partytown": "2.0.3",
"@astrojs/sitemap": "3.0.4",
"@astrojs/starlight": "0.15.2",
"@astrojs/starlight": "0.15.3",
"@astrojs/svelte": "5.0.3",
"@astrojs/tailwind": "5.1.0",
"@astrojs/vercel": "6.1.3",
Expand All @@ -37,7 +37,7 @@
"@tailwindcss/typography": "0.5.10",
"astro": "4.1.1",
"astro-seo": "0.8.0",
"lucide-svelte": "0.307.0",
"lucide-svelte": "0.308.0",
"mode-watcher": "0.1.2",
"svelte": "4.2.8",
"tailwind-merge": "2.2.0",
Expand Down
2 changes: 2 additions & 0 deletions docs/playbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Install following CLI tools globally

- [tsx](https://github.com/esbuild-kit/tsx) to run _TypeScript_ & _ESM_ files from command-line. This is **NOT** React's [TSX/JSX](https://www.typescriptlang.org/docs/handbook/jsx.html)
- [hasura-cli](https://hasura.io/docs/latest/hasura-cli/install-hasura-cli/) as GitOps tool for Hasura
- [dotenv](https://dotenv.run/)
- [turbo](https://turbo.build/repo/docs)

```shell
pnpm add -g tsx
Expand Down
4 changes: 2 additions & 2 deletions packages/skeleton-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
"@tailwindcss/line-clamp": "0.4.4",
"@tailwindcss/typography": "0.5.10",
"@tsconfig/svelte": "5.0.2",
"@types/node": "20.10.7",
"@types/node": "20.10.8",
"@vincjo/datatables": "1.14.2",
"autoprefixer": "10.4.16",
"clsx": "2.1.0",
"cssnano": "6.0.3",
"formsnap": "0.4.2",
"lucide-svelte": "0.307.0",
"lucide-svelte": "0.308.0",
"postcss": "8.4.33",
"postcss-import": "16.0.0",
"postcss-load-config": "5.0.2",
Expand Down
10 changes: 5 additions & 5 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
},
"dependencies": {
"@internationalized/date": "3.5.1",
"bits-ui": "0.13.4",
"bits-ui": "0.14.0",
"clsx": "2.1.0",
"cmdk-sv": "0.0.12",
"formsnap": "0.4.2",
"lucide-svelte": "0.307.0",
"lucide-svelte": "0.308.0",
"sveltekit-superforms": "1.13.2",
"swiper": "11.0.5",
"tailwind-merge": "2.2.0",
Expand All @@ -52,9 +52,9 @@
"@spectacular/typescript-config": "workspace:*",
"@tailwindcss/typography": "0.5.10",
"@tsconfig/svelte": "5.0.2",
"@types/node": "20.10.7",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"@types/node": "20.10.8",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"cssnano": "6.0.3",
"eslint": "8.56.0",
"postcss-import": "16.0.0",
Expand Down
Loading

1 comment on commit 30bbec3

@vercel
Copy link

@vercel vercel bot commented on 30bbec3 Jan 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

spectacular-docs – ./apps/docs

spectacular-docs.vercel.app
spectacular-docs-git-main-xmlking.vercel.app
spectacular-docs-xmlking.vercel.app

Please sign in to comment.