1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

Build pipeline works

This commit is contained in:
vrde 2015-05-15 15:05:17 +02:00
parent 49eaca1e9f
commit 23c033f12f
5 changed files with 19979 additions and 27 deletions

View File

@ -11,6 +11,6 @@
<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> <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]--> <![endif]-->
<div id="main"></div> <div id="main"></div>
<script src="js/bundle.js"></script>
</body> </body>
<script src="build/app.js"></script>
</html> </html>

View File

@ -5,6 +5,6 @@ import HelloApp from './components/hello_app';
React.render( React.render(
<HelloApp />, <HelloApp />,
document.getElementById('alt-todo') document.getElementById('main')
); );

19936
js/bundle.js

File diff suppressed because one or more lines are too long

View File

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

View File

@ -1,24 +1,42 @@
{ {
"name": "onion", "name": "Onion",
"version": "0.0.0", "version": "0.0.1",
"description": "Web client for ascribe", "description": "Das neue web client for Ascribe",
"main": "server.js", "main": "js/app.js",
"dependencies": {
"alt": "^0.16.0",
"react": "^0.12.2"
},
"devDependencies": {
"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": { "scripts": {
"start": "watchify -o js/bundle.js -v -d js/app.jsx", "start": "watchify -o js/bundle.js -v -d js/app.js",
"build": "browserify -t [reactify --es6] src/app.jsx > build/app.js", "build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js",
"test": "jest" "test": "jest"
}, },
"author": "Alberto Granzotto <alberto@ascribe.io>" "author": "Ascribe",
"license": "Copyright",
"browserify": {
"transform": [
"babelify",
"envify"
]
},
"devDependencies": {
"babel-jest": "^4.0.0",
"babelify": "^6.0.2",
"browserify": "^9.0.8",
"envify": "^3.4.0",
"jest-cli": "^0.4.0",
"reactify": "^1.1.0",
"watchify": "^3.1.2"
},
"dependencies": {
"alt": "^0.15.6",
"classnames": "^1.2.2",
"object-assign": "^2.0.0",
"react": "^0.13.2"
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/alt",
"<rootDir>/js/alt.js"
]
}
} }