Skip to content

Commit b880fc7

Browse files
committed
Merge remote-tracking branch 'origin/main' into franjo/run-prettier
# Conflicts: # .prettierignore # template/e2e-tests/.gitignore
2 parents 3f463fb + a69b8d0 commit b880fc7

File tree

10 files changed

+33
-50
lines changed

10 files changed

+33
-50
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ node_modules/
55
.DS_Store
66

77
# We want to keep the template clean from the usual build artifacts.
8+
# We also don't want to ship these ignore rules to the users.
89
template/app/migrations
910
template/app/package-lock.json

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dist/
55
# OpenSaaS app diff folder.
66
app_diff/
77

8-
# Formatting `.md` and `.mdx` can introduce logical changes.
8+
# Formatting `.md` and `.mdx` files can introduce logical changes.
99
**/blog/**/*.md
1010
**/blog/**/*.mdx
1111

opensaas-sh/app_diff/.gitignore.diff

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
--- template/app/.gitignore
22
+++ opensaas-sh/app/.gitignore
3-
@@ -6,6 +6,17 @@
4-
.env
5-
.env.*
6-
3+
@@ -1,2 +1,20 @@
4+
node_modules/
5+
.wasp/
6+
+
7+
+.env
8+
+.env.*
9+
+
710
+# These two we added only because dotenv-vault keeps adding them if it doesn't find them,
811
+# even though we don't need them. Remove them once dotenv-vault stops doing that.
912
+.env*
1013
+.flaskenv*
1114
+
12-
# Don't ignore example dotenv files.
13-
!.env.example
14-
!.env.*.example
15+
+# Don't ignore example dotenv files.
16+
+!.env.example
17+
+!.env.*.example
1518
+
1619
+# We don't want to ignore .env.client as it doesn't have any secrets.
1720
+!.env.client

opensaas-sh/app_diff/src/shared/common.ts.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
@@ -1,2 +1,4 @@
44
export const DocsUrl = 'https://docs.opensaas.sh';
55
export const BlogUrl = 'https://docs.opensaas.sh/blog';
6-
+export const GithubUrl = 'https://github.com/wasp-lang/opensaas';
6+
+export const GithubUrl = 'https://github.com/wasp-lang/open-saas';
77
+export const WaspUrl = 'https://wasp.sh';

package-lock.json

Lines changed: 4 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"prettier-plugin-organize-imports": "4.1.0",
1010
"prettier-plugin-pkg": "0.19.1",
1111
"prettier-plugin-sh": "0.17.4",
12-
"prettier-plugin-tailwindcss": "^0.6.13",
12+
"prettier-plugin-tailwindcss": "0.6.13",
1313
"typescript": "~5.8.3"
1414
}
1515
}

template/.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# MacOS-specific files.
2+
.DS_Store
3+
4+
# Ignore all dotenv files by default to prevent accidentally committing any secrets.
5+
# To include specific dotenv files, use the `!` operator or adjust these rules.
6+
.env
7+
.env.*
8+
9+
# Don't ignore example dotenv files.
10+
!.env.example
11+
!.env.*.example

template/app/.gitignore

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,2 @@
11
node_modules/
22
.wasp/
3-
4-
# Ignore all dotenv files by default to prevent accidentally committing any secrets.
5-
# To include specific dotenv files, use the `!` operator or adjust these rules.
6-
.env
7-
.env.*
8-
9-
# Don't ignore example dotenv files.
10-
!.env.example
11-
!.env.*.example

template/blog/.gitignore

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
# Dependencies
21
node_modules/
3-
4-
# Build outputs
52
.astro/
63
dist/
7-
8-
# Deployment
9-
.netlify/
10-
11-
# Ignore all dotenv files by default to prevent accidentally committing any secrets.
12-
# To include specific dotenv files, use the `!` operator or adjust these rules.
13-
.env
14-
.env.*
15-
16-
# Don't ignore example dotenv files.
17-
!.env.example
18-
!.env.*.example

template/e2e-tests/.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/reports/
2-
/test-results/
3-
/.cache/
4-
/node_modules/
1+
reports/
2+
test-results/
3+
.cache/
4+
node_modules/
55
prisma/

0 commit comments

Comments
 (0)