remove forgot in 'no more native' a9dd27c

This commit is contained in:
Hongarc 2018-12-02 20:20:33 +07:00
parent 95d5a02170
commit 57f84f0a36
4 changed files with 2 additions and 43 deletions

View file

@ -109,14 +109,9 @@ module.exports = function(grunt) {
'Gruntfile.js', 'Gruntfile.js',
'__tests__/*.spec.js', '__tests__/*.spec.js',
'src/js/**/*.js', 'src/js/**/*.js',
'src/js/**/**/*.js', 'src/js/**/**/*.js'
'src/levels/**/*.js'
], ],
options: { options: {
ignores: [
'src/js/**/*.ios.js',
'src/js/native_react_views/*.js'
],
curly: true, curly: true,
// sometimes triple equality is just redundant and unnecessary // sometimes triple equality is just redundant and unnecessary
eqeqeq: false, eqeqeq: false,

View file

@ -24,8 +24,7 @@
"grunt-react": "^0.12.1", "grunt-react": "^0.12.1",
"grunt-shell-spawn": "~0.3.0", "grunt-shell-spawn": "~0.3.0",
"jasmine-node": "~1.12.0", "jasmine-node": "~1.12.0",
"prompt": "^1.0.0", "prompt": "^1.0.0"
"react-tools": "^0.13.1"
}, },
"dependencies": { "dependencies": {
"backbone": "~1.1.2", "backbone": "~1.1.2",

View file

@ -1,16 +0,0 @@
var AppStyles = {
blueBackground: '#5cbcfc',
terminalBackground: '#424242',
terminalText: 'rgb(238, 238, 238)',
terminalHeader: '#EFEDEE',
terminalBorder: '#303030',
terminalFontFamily: 'Courier',
};
AppStyles.terminalTextStyle = {
color: AppStyles.terminalText,
fontFamily: AppStyles.terminalFontFamily,
fontWeight: 'bold',
};
module.exports = AppStyles;

View file

@ -1,19 +0,0 @@
var assign = require('object-assign');
var keyMirror = require('../util/keyMirror');
module.exports = keyMirror({
NUX: null,
LOADING: null,
SEQUENCE_SELECT: null,
LEVEL_SELECT: null,
});
module.exports.getRouteWithParams = function(id, params) {
return assign({id: id}, params);
};
module.exports.getRouteForID = function(id) {
return {
id: id,
};
};