Skip to content

Commit

Permalink
0.9.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JayCanuck committed Jan 11, 2018
1 parent 8912582 commit 8e8a048
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.9.7 (January 11, 2018)

Updated copyright and license information for 2018 year.
Minor updates to documentation phrasing.
Fixed root-level `-h`/`--help` overriding command-level help information.

## 0.9.6 (December 21, 2017)

Renamed from `enact-dev` to `@enact/cli` for consistency, along with updated documentation.
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": "@enact/cli",
"version": "0.9.6",
"version": "0.9.7",
"description": "Full-featured build environment tool for Enact applications.",
"main": "index.js",
"author": "Jason Robitaille <[email protected]>",
Expand Down
8 changes: 2 additions & 6 deletions template/src/index.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
import React from 'react';
import {render} from 'react-dom';

import App from './App';

let appElement = (<App />);
const appElement = (<App />);

// In a browser environment, render instead of exporting
if (typeof window !== 'undefined') {
render(
appElement,
document.getElementById('root')
);
render(appElement, document.getElementById('root'));
}

export default appElement;

0 comments on commit 8e8a048

Please sign in to comment.