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

Migrate from Netlify CMS to Decap CMS and Modernize Codebase with Dependency Updates #79

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b8067c5
Replace Netlify CMS with Decap CMS in configuration and dependencies
biru-codeastromer Dec 16, 2024
940bbcb
updated dependencies to latest version and corrected errors
biru-codeastromer Dec 16, 2024
7820f01
Fix Gatsby config module error by renaming to .cjs
biru-codeastromer Dec 16, 2024
9a436ed
fix minor ci errors
biru-codeastromer Dec 16, 2024
9d01b9a
changed gatsby-config.cjs to gatsby-config.js to fix ci checks
biru-codeastromer Dec 16, 2024
d375d3d
errors fixes
biru-codeastromer Dec 17, 2024
2e0a7f3
Rename eslint.config.js to eslint.config.mjs
biru-codeastromer Dec 17, 2024
1120d83
Update gatsby-node.js
biru-codeastromer Dec 17, 2024
8c349d4
Update gatsby-node.js
biru-codeastromer Dec 17, 2024
bc5a2d1
Update gatsby-node.js
biru-codeastromer Dec 17, 2024
ebc69f0
Update gatsby-node.js to handle checks
biru-codeastromer Dec 17, 2024
5d04988
handled createresolvers
biru-codeastromer Dec 17, 2024
5329ac0
parsing error updated
biru-codeastromer Dec 17, 2024
95c1ab2
resolved graphql error and other fixes
biru-codeastromer Dec 18, 2024
42248f7
fixed eslint 4 errors
biru-codeastromer Dec 18, 2024
723f2c9
Resolved merge conflicts in package.json and updated dependencies
biru-codeastromer Jan 13, 2025
d4f28d7
Resolved merge conflicts in package.json and package-lock.json
biru-codeastromer Jan 13, 2025
1b3bfb0
resolve conflicts
biru-codeastromer Jan 13, 2025
7bb8215
resolved final issues
biru-codeastromer Jan 13, 2025
2e060e9
resolved conflicts
biru-codeastromer Feb 13, 2025
20cb28d
fixing jenkins ci checks more
biru-codeastromer Feb 13, 2025
44a8667
Merge branch 'main' into updatedecap-cms
biru-codeastromer Feb 14, 2025
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
Binary file added .DS_Store
Binary file not shown.
8 changes: 4 additions & 4 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ module.exports = {
},
},
{
resolve: 'gatsby-plugin-netlify-cms',
resolve: 'gatsby-plugin-decap-cms',
options: {
modulePath: require.resolve('./src/cms/netlify.jsx')
}
},
modulePath: `${__dirname}/src/cms/cms.js`, // Path to your CMS configuration
},
},
{
resolve: 'gatsby-plugin-matomo',
options: {
Expand Down
Loading