Skip to content

Commit 1d35d91

Browse files
committed
prepare 0.10.1 release
1 parent 56abcb8 commit 1d35d91

File tree

9 files changed

+6
-75
lines changed

9 files changed

+6
-75
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [0.10.1] - WIP
5+
## [0.10.1] - 2016-06-18
66
- style fix for Atom 1.9
7-
7+
8+
- drops node-gyp dependency from syntax-highlighter
89

910
## [0.10.0] - 2016-06-12
1011
- throttle saves at 800ms

lib/components/TextEditor/index.js

-34
This file was deleted.

lib/components/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ var Start_1 = require('./Start');
1616
exports.Start = Start_1.default;
1717
var Tutorials_1 = require('./Tutorials');
1818
exports.Tutorials = Tutorials_1.default;
19-
var TextEditor_1 = require('./TextEditor');
20-
exports.TextEditor = TextEditor_1.default;
2119
var RouteButton_1 = require('./common/RouteButton');
2220
exports.RouteButton = RouteButton_1.default;
2321
var ContentCard_1 = require('./common/ContentCard');

lib/store.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
var reducers_1 = require('./reducers');
33
var core_coderoad_1 = require('core-coderoad');
44
Object.defineProperty(exports, "__esModule", { value: true });
5-
exports.default = core_coderoad_1.configureStore(reducers_1.default, false, { TEST_RUN: 500 });
5+
exports.default = core_coderoad_1.configureStore(reducers_1.default, false, { TEST_RUN: 800 });

package.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,13 @@
3232
"atom-plugin-command-line": "1.0.2",
3333
"coderoad-cli": "0.6.0",
3434
"core-coderoad": "0.3.0",
35-
"lodash": "^4.13.1",
3635
"material-ui": "0.15.0",
3736
"node-file-exists": "1.1.0",
3837
"react": "15.1.0",
3938
"react-dom": "15.1.0",
4039
"react-redux": "4.4.5",
4140
"react-tap-event-plugin": "1.0.0",
42-
"redux": "3.5.2",
43-
"redux-logger": "2.6.1",
44-
"redux-throttle-actions": "1.1.0",
45-
"redux-thunk": "2.1.0"
41+
"redux": "3.5.2"
4642
},
4743
"engines": {
4844
"atom": ">=1.0.0 <2.0.0"

src/components/TextEditor/index.tsx

-28
This file was deleted.

src/components/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export {default as Progress} from './Progress';
99
export {default as Routes} from './Routes';
1010
export {default as Start} from './Start';
1111
export {default as Tutorials} from './Tutorials';
12-
export {default as TextEditor} from './TextEditor';
1312

1413
export {default as RouteButton} from './common/RouteButton';
1514
export {default as ContentCard} from './common/ContentCard';

src/store.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ export default configureStore(
66
// devMode
77
false,
88
// throttled actions
9-
{ TEST_RUN: 500 }
9+
{ TEST_RUN: 800 }
1010
);

tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@
120120
"src/components/Start/Checks/VerifyButton.tsx",
121121
"src/components/Start/index.tsx",
122122
"src/components/Start/Welcome/index.tsx",
123-
"src/components/TextEditor/index.tsx",
124123
"src/components/Tutorials/index.tsx",
125124
"src/components/Tutorials/LoadTutorials/index.tsx",
126125
"src/components/Tutorials/SelectTutorial/index.tsx",

0 commit comments

Comments
 (0)