Add some code

This commit is contained in:
vrde 2015-05-13 16:26:12 +02:00
parent 15c802b7c0
commit 49eaca1e9f
6 changed files with 50 additions and 3 deletions

16
index.html Normal file
View File

@ -0,0 +1,16 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ascribe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="main"></div>
</body>
<script src="build/app.js"></script>
</html>

3
js/alt.js Normal file
View File

@ -0,0 +1,3 @@
import Alt from 'alt';
export default new Alt();

10
js/app.jsx Normal file
View File

@ -0,0 +1,10 @@
'use strict';
import React from 'react';
import HelloApp from './components/hello_app';
React.render(
<HelloApp />,
document.getElementById('alt-todo')
);

1
js/bundle.js Normal file
View File

@ -0,0 +1 @@
console.error("\n/home/alberto/ascribe/repos/onion/js/app.jsx:3\nimport React from 'react';\n^\nParseError: 'import' and 'export' may appear only with 'sourceType: module'");

View File

@ -0,0 +1,11 @@
import React from 'react';
class TodoApp extends React.Component {
render () {
return (
<h1>ascribe all the things!</h1>
);
}
};
export default HelloreactApp;

View File

@ -8,11 +8,17 @@
"react": "^0.12.2"
},
"devDependencies": {
"browserify": "^8.0.3",
"reactify": "^0.17.1"
"browserify": "^6.2.0",
"envify": "^3.0.0",
"jest-cli": "^0.4.3",
"reactify": "^0.15.2",
"uglify-js": "~2.4.15",
"watchify": "^2.1.1"
},
"scripts": {
"build": "browserify -t [reactify --es6] src/app.jsx > build/app.js"
"start": "watchify -o js/bundle.js -v -d js/app.jsx",
"build": "browserify -t [reactify --es6] src/app.jsx > build/app.js",
"test": "jest"
},
"author": "Alberto Granzotto <alberto@ascribe.io>"
}