Skip to content

Releases: bensmithett/tropical

6.2.0: Make meta description optional

01 Aug 23:06
98281df
Compare
Choose a tag to compare

Changes

See #16

Upgrade instructions (more info)

Upgrade instructions (more info)

Merge upstream changes

First, configure this repo as a remote for your repo (you only need to do this once)

  git remote add template https://github.com/bensmithett/tropical.git

Then fetch & merge the latest changes, resolving any conflicts manually:

git fetch template
git merge template/master

or...

Manually update your code
  • Update DefaultLayout (or your own layouts) to make meta.description optional as per #16
  • If you were including a meta.description on any pages and you didn't really want to, remove it!
  • If you're using Prettier, copy the changes to .prettierrc from #16 (although I'm not the boss of you, configure Prettier however you want!)

6.1.0: Syntax highlighting and a better CSS reset

01 Aug 05:13
90cfd01
Compare
Choose a tag to compare

Changes

See #15

  • Adds Prism-powered syntax highlighting for fenced code blocks in Markdown content, as per the MDX docs
    • As a result, there's also a new CodeBlock component that can be used independently of Markdown if necessary
  • Minor improvements to the CSS reset (see #15)

Upgrade instructions (more info)

Merge upstream changes

First, configure this repo as a remote for your repo (you only need to do this once)

  git remote add template https://github.com/bensmithett/tropical.git

Then fetch & merge the latest changes, resolving any conflicts manually:

git fetch template
git merge template/master

or...

Manually update your code

Syntax highlighting

CSS Reset

Copy the simple changes to cssReset.js from #15 https://github.com/bensmithett/tropical/pull/15/files#diff-de01364995b305a01639d43eb475345b

6.0.1: Minor dependency updates

25 Jul 07:15
Compare
Choose a tag to compare

Changes

Minor dependency updates

Upgrade instructions (more info)

yarn upgrade @babel/core @babel/preset-env @babel/preset-react @mdx-js/loader webpack

6.0.0: 🐍 🔜 🐪

11 Jul 12:54
760603a
Compare
Choose a tag to compare

Changes

#12

  • Changed filenames from snake_case to more JS-ish camelCase/TitleCase
  • Bumped the default version of Node from 12.16.0 to 14.5.0
  • More documentation
  • Added a .prettierrc

Upgrade instructions (more info)

  • Sorry, this is an annoying upgrade. There's no functionality change in here, but you may want to rip the bandaid off and do a bulk rename of files as per #12.
    • Alternatively, if you haven't made changes to the core files you can just copy your components and pages into this new version rather than renaming everything.
  • Start using Node 14.5.0 for this project
  • Copy .prettierrc if you wish to use it

5.0.0: A new name

08 Jul 08:31
84fd26e
Compare
Choose a tag to compare

Changes

Renamed the project to Tropical #11

Upgrade instructions (more info)

  • Find & replace San Blas with Tropical
  • Find & replace sanblas with tropical

4.0.0: Buzzword swap!

08 Jul 08:22
cc75f2e
Compare
Choose a tag to compare

Changes

  • Replaces use of isomorphic with hydration, since that's what the concept is called in React now
  • Add some more inline READMEs to help when starting out.
  • Move document template from its own file to entry.prerender.js

Upgrade instructions (more info)

As per the diff in #10

  • Delete layouts/document_template.js and put its contents in entry.prerender.js
  • Rename isomorphic_helpers.js to hydration_helpers.js and update references
  • Rename rehydrateIslands to hydrateIslands and update references

3.0.0: The Neatening

05 Jul 23:27
Compare
Choose a tag to compare

Changes

Moves the following folders into an app folder:

  • components
  • images
  • layouts
  • pages

as well as the four core San Blas files (previously in lib)

  • build.js
  • entry.client.js
  • entry.prerender.js
  • isomorphic_helpers.js

and update references to the new paths.

Upgrade instructions (more info)

2.0.1

30 Jun 12:10
Compare
Choose a tag to compare

Changes

Minor version bumps for outdated dependencies

Upgrade instructions (more info)

Run yarn upgrade or npm update