diff --git a/Makefile b/Makefile deleted file mode 100644 index 2a6cbdb..0000000 --- a/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -all: install - -bootstrap: - ./scripts/bootstrap.sh - -dev: - ./scripts/dev.sh - -publish: bootstrap - npm publish . - -install: bootstrap - npm install . - -link: bootstrap - npm link . - diff --git a/README.textile b/README.textile index 7b672af..2ea5c1b 100644 --- a/README.textile +++ b/README.textile @@ -51,7 +51,7 @@ You must have git and npm installed before you can develop.
 git clone git://github.com/davglass/nodejs-yui3.git
 cd nodejs-yui3/
-make install
+npm install .
 
h2. Using YUI3 diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh deleted file mode 100755 index eac5fad..0000000 --- a/scripts/bootstrap.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -cd lib -wait - -npm=`which npm` - -if [ ! -x "$npm" ]; then - echo "NPM not found! Please install it: http://github.com/isaacs/npm" - exit 1; -fi - -if [ ! -d "./yui3" ]; then - echo "YUI 3 source files are not installed, please run: make dev" - exit 1; - -fi diff --git a/scripts/dev.sh b/scripts/dev.sh deleted file mode 100755 index cf06ae8..0000000 --- a/scripts/dev.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -cd lib -wait - -git=`which git` - -if [ ! -x "$git" ]; then - echo "Git is not installed, it is needed for developer access" - exit 1; -fi - -if [ -d "./yui3" ]; then - echo "Found old source files, updating" - cd yui3 - git pull - wait - cd ../ - wait -else - echo "Fetching YUI3 Source from Github (this may take a couple of minutes)" - git clone git://github.com/yui/yui3.git - wait -fi - -echo "Done fetching source, now you can run: make link or make install" -