Skip to content

Commit 360956e

Browse files
authored
Merge pull request #147 from PSDTools/svelte
Init PetalNotes
2 parents 1dc2926 + 9d33453 commit 360956e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+6781
-1516
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
eslint.config.ts @lishaduck
2525
package.json @lishaduck
2626
pnpm-lock.yaml @lishaduck
27-
tsconfig.*json @lishaduck
27+
tsconfig.json @lishaduck
2828
vite.config.ts @lishaduck

.github/dependabot.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ updates:
1515
groups:
1616
lint:
1717
patterns:
18-
- "@eslint-types/*"
1918
- "@sherifforg/*"
2019
- "eslint*"
2120
commitlint:

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ jobs:
5858
key: ${{ runner.os }}-turbo-${{ github.sha }}
5959
restore-keys: |
6060
${{ runner.os }}-turbo-
61-
# fetch registry metadata
6261
- name: 🎾 Fetch package metadata
6362
run: pnpm fetch
6463
- name: 📦 Install dependencies
6564
run: pnpm install --frozen-lockfile --offline
65+
- name: 🎭 Install browser
66+
run: pnpm exec playwright install --with-deps
67+
working-directory: apps/petal-notes
6668
- name: 🌐 Disable analytics
6769
run: pnpm exec turbo telemetry disable
6870
- name: 🔨 Build

.gitignore

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,19 @@ web_modules/
8080
!.yarn/versions
8181
.pnp.*
8282

83-
# dotenv environment variable files
83+
# Env
8484
.env
85-
.env.development.local
86-
.env.test.local
87-
.env.production.local
88-
.env.local
85+
.env.*
86+
!.env.example
87+
!.env.test
88+
.envrc
8989

9090
# Vite bundler config
9191
dev-dist
9292
build
9393
types
94-
vite.config.ts.timestamp-*.mjs
94+
vite.config.js.timestamp-*
95+
vite.config.ts.timestamp-*
9596

9697
# parcel-bundler cache (https://parceljs.org/)
9798
.parcel-cache
@@ -133,6 +134,16 @@ dist
133134
# Stores VSCode versions used for testing VSCode extensions
134135
.vscode-test
135136

136-
137137
# Turborepo
138138
.turbo
139+
140+
# Output
141+
.output
142+
.vercel
143+
.netlify
144+
.wrangler
145+
.svelte-kit
146+
build
147+
148+
test-results
149+
*storybook.log

.npmrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
auto-install-peers=true
1+
auto-install-peers=false
22
strict-peer-dependencies=true
33
disallow-workspace-cycles=true
4+
engine-strict=true

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v23.6.0
1+
v23.8.0

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
**/artifacts/
55
**/coverage/
66
.git/
7-
/turbo.json
87
pnpm-lock.yaml
98
vite.config.ts.timestamp-*.mjs

.prettierrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

.prettierrc.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
3+
"trailingComma": "all",
4+
"singleQuote": false,
5+
"semi": true,
6+
"tabWidth": 2,
7+
"useTabs": false,
8+
"endOfLine": "lf",
9+
"experimentalTernaries": true,
10+
"overrides": [
11+
{
12+
"files": "*.svelte",
13+
"options": {
14+
"parser": "svelte"
15+
}
16+
},
17+
{
18+
"files": "**/turbo.json",
19+
"options": {
20+
"parser": "json-stringify"
21+
}
22+
}
23+
]
24+
}

.typesyncrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)