Skip to content

Commit

Permalink
include --prefix-paths in build (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
mimiflynn authored Mar 7, 2024
1 parent f8381bf commit 691879f
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 48 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -1391,4 +1391,5 @@ $RECYCLE.BIN/
## gatsby files
##
.cache/
public
public
docs/
84 changes: 55 additions & 29 deletions site/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,37 +13,37 @@
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"gatsby": "^5.11.0",
"gatsby-plugin-image": "^3.11.0",
"gatsby-plugin-manifest": "^5.11.0",
"gatsby-plugin-mdx": "^5.11.0",
"gatsby-plugin-react-helmet": "^6.11.0",
"gatsby-plugin-sharp": "^5.11.0",
"gatsby-plugin-sitemap": "^6.11.0",
"gatsby": "^5.13.3",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-mdx": "^5.13.1",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-plugin-webfonts": "^2.3.2",
"gatsby-remark-autolink-headers": "^6.11.0",
"gatsby-remark-copy-linked-files": "^6.11.0",
"gatsby-remark-images": "^7.11.0",
"gatsby-remark-prismjs": "^7.11.0",
"gatsby-remark-responsive-iframe": "^6.11.1",
"gatsby-remark-smartypants": "^6.11.0",
"gatsby-source-filesystem": "^5.11.0",
"gatsby-transformer-sharp": "^5.11.0",
"gatsby-remark-autolink-headers": "^6.13.1",
"gatsby-remark-copy-linked-files": "^6.13.1",
"gatsby-remark-images": "^7.13.1",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-remark-responsive-iframe": "^6.13.1",
"gatsby-remark-smartypants": "^6.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"style-to-object": "^0.4.2"
"style-to-object": "^1.0.5"
},
"scripts": {
"develop": "gatsby develop -H 0.0.0.0",
"start": "gatsby develop -H 0.0.0.0",
"build": "gatsby clean && gatsby build && npm run pub",
"build": "gatsby clean && gatsby build --prefix-paths && npm run pub",
"serve": "gatsby serve",
"pub": "rm -rf ../docs && mv public ../docs",
"clean": "gatsby clean"
},
"devDependencies": {
"prettier": "^2.8.8"
"prettier": "^3.2.5"
}
}

0 comments on commit 691879f

Please sign in to comment.