Bump patch version
This commit is contained in:
parent
69851ea01b
commit
8f6f1a0fca
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "netlify-cms",
|
"name": "netlify-cms",
|
||||||
"version": "0.1.10",
|
"version": "0.1.11",
|
||||||
"description": "Netlify CMS lets content editors work on structured content stored in git",
|
"description": "Netlify CMS lets content editors work on structured content stored in git",
|
||||||
"main": "dist/cms.js",
|
"main": "dist/cms.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -5,6 +5,7 @@ import DashboardPage from '../containers/DashboardPage';
|
|||||||
import CollectionPage from '../containers/CollectionPage';
|
import CollectionPage from '../containers/CollectionPage';
|
||||||
import EntryPage from '../containers/EntryPage';
|
import EntryPage from '../containers/EntryPage';
|
||||||
import SearchPage from '../containers/SearchPage';
|
import SearchPage from '../containers/SearchPage';
|
||||||
|
import ConfigurationPage from '../containers/ConfigurationPage';
|
||||||
import NotFoundPage from '../containers/NotFoundPage';
|
import NotFoundPage from '../containers/NotFoundPage';
|
||||||
|
|
||||||
export default (
|
export default (
|
||||||
@ -32,6 +33,10 @@ export default (
|
|||||||
path="/search/:searchTerm"
|
path="/search/:searchTerm"
|
||||||
component={SearchPage}
|
component={SearchPage}
|
||||||
/>
|
/>
|
||||||
|
<Route
|
||||||
|
path="/configuration"
|
||||||
|
component={ConfigurationPage}
|
||||||
|
/>
|
||||||
<Route
|
<Route
|
||||||
path="*"
|
path="*"
|
||||||
component={NotFoundPage}
|
component={NotFoundPage}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user