-
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
react-router@2.2.2 fixes the issue that create homepage to be not rendered.
(#393)