Skip to content

Commit

Permalink
[_refactored] to use Lerna packages
Browse files Browse the repository at this point in the history
Closes #3
  • Loading branch information
appsforartists committed Oct 6, 2016
1 parent 2593c5a commit 5a6c3f3
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ npm-debug.log

# removing these until we have put more thought into how we want to
# package/distribute
dist/*
**/dist/*
site/static/*.js
*.js.map
4 changes: 4 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"lerna": "2.0.0-beta.30",
"version": "0.0.0"
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"react-hot-loader": "3.0.0-beta.2",
"react-router": "2.0.0",
"webpack": "2.1.0-beta.4",
"webpack-dev-server": "2.1.0-beta.0"
"webpack-dev-server": "2.1.0-beta.0",
"lerna": "2.0.0-beta.30"
},
"repository": {
"type": "git",
Expand Down
39 changes: 39 additions & 0 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "material-motion-runtime",
"version": "0.0.0",
"description": "The core architecture for Material Motion.",
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
},
"devDependencies": {
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:material-motion/material-motion-experiments-js.git"
},
"keywords": [
"animation",
"gestures",
"interactive",
"material",
"motion",
"multitouch",
"observables",
"odeon",
"physics",
"springs",
"touch",
"transitions",
"tweens"
],
"author": "The Material Motion Authors (see AUTHORS)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/material-motion/material-motion-experiments-js/issues/"
},
"homepage": "https://github.com/material-motion/material-motion-experiments-js/#readme"
}
15 changes: 15 additions & 0 deletions packages/runtime/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"lib": [
"es2015",
"dom"
],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitThis": true,
"outDir": "dist",
"sourceMap": true,
"target": "es6"
}
}

0 comments on commit 5a6c3f3

Please sign in to comment.