项目作者: madecomfy

项目描述 :
Move all of your JS and CSS build files, as well as the static folder into a subdirectory of your choice
高级语言: JavaScript
项目地址: git://github.com/madecomfy/gatsby-plugin-asset-path.git
创建时间: 2018-08-17T01:33:45Z
项目社区:https://github.com/madecomfy/gatsby-plugin-asset-path

开源协议:MIT License

下载


gatsby-plugin-asset-path

Copy all of your JS and CSS build files, as well as the static folder into a subdirectory of your choice.

Breaking change in v3

No longer moves files due to gatsby’s internal cache management. Copying files instead!

Breaking change in v2

  • A sitemap is no longer required
  • A webmanifest is no longer required

The above two files were hard coded into this plugin in earlier versions. If you still want to move these files to the assets folder, use the new paths option, see below for more information on the option. To get the same behavior as v1, use the following options:

  1. options: {
  2. paths: ["manifest.webmanifest", "sitemap.xml"],
  3. },

Also note that sitemap.xml and the page-data folder were copied to assets folder before, now they are moved just as all other files this plugin handles.

Breaking change in v1

Use assetPrefix instead of pathPrefix

Our use case

Gatsby by default will generate all of the assets and put them directly at the root level:

  1. public
  2. index.html
  3. component1.js
  4. | component1.js.map
  5. | component1.css
  6. | component2.js
  7. | compoennt2.js.map
  8. | component3.css
  9. └───path1
  10. index.html
  11. other1.html
  12. │───path2
  13. index.html
  14. other2.html
  15. |___static
  16. | | data.json
  17. | | image.jpg

However here at MadeComfy, we host our site on AWS Cloudfront/S3. One issue that we faced was that somehow, two different builds would have some JS/CSS files with the same file names even though their content are different.

That means during deployment on S3 and object invalidation on Cloudfront, someone that is currently browsing the site, would see the experience broken whilst moving onto other pages as the loaded JS would still have asset references of the previous build.

Hence our need to make sure that each build is kept intact on Cloudfront, except the HTML that are loaded on the browser at each hard reload. That way we make sure that our site has no down time at any point of time. We’ve configured our caching configs this way.

Using this plugin, our file struture is now as followed:

  1. public
  2. index.html
  3. |___assets
  4. | |___1534761288
  5. | | component1.js
  6. | | component1.js.map
  7. | | component1.css
  8. | | component2.js
  9. | | compoennt2.js.map
  10. | | component3.css
  11. | |___static
  12. | | | data.json
  13. | | | image.jpg
  14. └───path1
  15. index.html
  16. other1.html
  17. │───path2
  18. index.html
  19. other2.html

Our new assets folder would contain assets of every build once on S3.

Install

  1. npm install --save-dev gatsby-plugin-asset-path
  1. yarn install -D gatsby-plugin-asset-path

How to use

  1. // Your gatsby-config.js
  2. {
  3. assetPrefix: "custom_asset_folder",
  4. plugins: [
  5. {
  6. resolve: "gatsby-plugin-asset-path"
  7. }
  8. ]
  9. }

In our use case above, we have assetPrefix set as followed:

  1. {
  2. assetPrefix: `/assets/${Date.now().toString()}`,
  3. }

Options

removeMapFiles

Default: false

Stops Webpack from generating the .js.map files

  1. // Your gatsby-config.js
  2. {
  3. plugins: [
  4. {
  5. resolve: "gatsby-plugin-asset-path",
  6. options: {
  7. removeMapFiles: true,
  8. },
  9. },
  10. ];
  11. }

paths

Default: ["static", "page-data"]

The paths of files/folders to be copied to the asset directory. Do not add icons since these are copied and duplicated across /public/icons/ and /public/${assetPrefix}/.

  1. // Your gatsby-config.js
  2. {
  3. plugins: [
  4. {
  5. resolve: "gatsby-plugin-asset-path",
  6. options: {
  7. paths: ["static"],
  8. },
  9. },
  10. ];
  11. }

fileTypes

Default: ["js", "css"]

The types of files in the root publicFolder to be copied to the asset directory.

  1. // Your gatsby-config.js
  2. {
  3. plugins: [
  4. {
  5. resolve: "gatsby-plugin-asset-path",
  6. options: {
  7. fileTypes: ["js", "map", "css"],
  8. },
  9. },
  10. ];
  11. }

DEPLOY

Update version in package.json then release via github releases with same tag #!