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

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Nov 2, 2015
1 parent d274635 commit f5ebb32
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 0.4.0 - 2015-11-02

- Fixed: add missing `npm-install-package` dependency
([#44](https://github.com/MoOx/statinamic/issues/44))
- Removed: `NotFound` and `Loading` props of `PageContainer`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "statinamic",
"version": "0.3.0",
"version": "0.4.0",
"description": "A static website generator to create dynamic website using React components.",
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion src/static/to-html/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from "path"
import mkdirp from "mkdirp"

import urlAsHtml from "./url-as-html"
import * as pagesActions from "../redux/modules/pages"
import * as pagesActions from "../../redux/modules/pages"

if (pagesActions.SET === undefined) {
throw new Error("pages SET action is undefined")
Expand Down
2 changes: 1 addition & 1 deletion src/static/to-html/url-as-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Provider } from "react-redux"
import Helmet from "react-helmet"

import Html from "./Html"
import MetadataProvider from "../MetadataProvider"
import MetadataProvider from "../../MetadataProvider"

export default (url, { metadata, routes, store, baseUrl }) => (
new Promise((resolve, reject) => {
Expand Down

0 comments on commit f5ebb32

Please sign in to comment.