Skip to content
This repository was archived by the owner on Sep 7, 2020. It is now read-only.

0.10.2

Compare
Choose a tag to compare
@MoOx MoOx released this 14 Apr 20:38
  • Fixed: replacement of some references that have been missed during the rename:

    • STATINAMIC (in .js)
    • statinamic (in .css).
      To be sure, run the following commands.
    $ npm remove --save-dev statinamic
    $ npm install --save-dev phenomic@^0.10.2
    $ find . -type f \( -iname \*.css -o -iname \*.js -o -iname \*.json \) -not \( -path './.git/*' -o -path './node_modules/*' \) \
      -exec sed -i '' 's|Statinamic|Phenomic|g' {} \;
    $ find . -type f \( -iname \*.css -o -iname \*.js -o -iname \*.json \) -not \( -path './.git/*' -o -path './node_modules/*' \) \
      -exec sed -i '' 's|statinamic|phenomic|g' {} \;
    $ find . -type f \( -iname \*.css -o -iname \*.js -o -iname \*.json \) -not \( -path './.git/*' -o -path './node_modules/*' \) \
      -exec sed -i '' 's|STATINAMIC|PHENOMIC|g' {} \;
  • Fixed: boilerplate now ship latest version of react-router, since
    [email protected] fixes the issue that create homepage to be not rendered.
    (#393)