Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ yarn-error.log*

# serverless
.serverless
.serverless_nextjs
# Sentry Config File
.env.sentry-build-plugin
Notes.md
.serverless_nextjs
# Sentry Config File
.env.sentry-build-plugin
Notes.md
/src/styles/vendor
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
import "./.next/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
5 changes: 4 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ const nextConfig = {

// Transpile packages
transpilePackages: [
"mui-tel-input"
"mui-tel-input",
"@churchapps/apphelper-website",
"@churchapps/apphelper-markdown",
"@churchapps/apphelper-donations"
],

// Compiler optimizations
Expand Down
893 changes: 76 additions & 817 deletions package-lock.json

Large diffs are not rendered by default.

19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"postinstall": "copyfiles -a -f node_modules/@churchapps/apphelper/public/locales/** public/apphelper/locales && copyfiles -a -f node_modules/@churchapps/apphelper-markdown/dist/editor.css public/apphelper/css && copyfiles -a -f node_modules/react-cropper/node_modules/cropperjs/dist/cropper.css public/css"
"postinstall": "copyfiles -a -f node_modules/@churchapps/apphelper/public/locales/** public/apphelper/locales && copyfiles -a -f node_modules/@churchapps/apphelper-markdown/dist/editor.css public/apphelper/css && copyfiles -a -f node_modules/react-cropper/node_modules/cropperjs/dist/cropper.css public/css && copyfiles -a -f node_modules/@churchapps/apphelper-website/dist/styles/animations.css node_modules/@churchapps/apphelper-website/dist/styles/pages.css src/styles/vendor && copyfiles -a -f node_modules/@churchapps/apphelper-markdown/dist/components/markdownEditor/editor.css public/apphelper/css/markdown && copyfiles -a -u 7 \"node_modules/@churchapps/apphelper-markdown/dist/components/markdownEditor/images/**/*\" public/apphelper/css/markdown/images"
},
"dependencies": {
"@churchapps/apphelper": "0.6.19",
"@churchapps/apphelper-donations": "^0.6.17",
"@churchapps/apphelper-forms": "^0.6.14",
"@churchapps/apphelper-login": "^0.6.18",
"@churchapps/apphelper-markdown": "^0.6.15",
"@churchapps/apphelper-website": "^0.6.17",
"@churchapps/content-providers": "^0.1.6",
"@churchapps/helpers": "1.2.30",
"@churchapps/apphelper": "0.6.20",
"@churchapps/apphelper-donations": "0.6.18",
"@churchapps/apphelper-forms": "0.6.15",
"@churchapps/apphelper-login": "0.6.19",
"@churchapps/apphelper-markdown": "0.6.18",
"@churchapps/apphelper-website": "0.6.19",
"@churchapps/content-providers": "0.1.8",
"@churchapps/helpers": "1.2.31",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.6",
Expand Down Expand Up @@ -58,6 +58,7 @@
"react-ga4": "^2.1.0",
"react-image-file-resizer": "^0.4.8",
"react-router-dom": "^7.6.3",
"react-google-recaptcha": "^3.1.0",
"react-youtube": "^10.1.0",
"rrule": "^2.8.1",
"webfontloader": "^1.6.28"
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default defineConfig({
},

use: {
baseURL: 'https://grace.demo.b1.church',
baseURL: process.env.BASE_URL || 'https://grace.demo.b1.church',
trace: 'retain-on-failure',
screenshot: 'only-on-failure',
video: 'off',
Expand Down
Loading
Loading