Skip to content

Commit c199cb2

Browse files
committed
renamed
1 parent 4a22806 commit c199cb2

17 files changed

+126
-1221
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Contributing Guide
22

3-
First, feel free to contact me with questions. [Mailing List](https://groups.google.com/forum/?fromgroups#!forum/js-data). [Issues](https://github.com/js-data/js-data/issues).
3+
First, feel free to contact me with questions. [Mailing List](https://groups.google.com/forum/?fromgroups#!forum/js-data-project). [Issues](https://github.com/js-data/js-data-firebase/issues).
44

55
1. Contribute to the issue that is the reason you'll be developing in the first place
6-
1. Fork js-data
7-
1. `git clone https://github.com/<you>/js-data.git`
8-
1. `cd js-data; npm install; bower install;`
6+
1. Fork js-data-firebase
7+
1. `git clone https://github.com/<you>/js-data-firebase.git`
8+
1. `cd js-data-firebase; npm install; bower install;`
99
1. `grunt go` (builds and starts a watch)
1010
1. (in another terminal) `grunt karma:dev` (runs the tests)
1111
1. Write your code, including relevant documentation and tests

Gruntfile.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ module.exports = function (grunt) {
5353
browserify: {
5454
options: {
5555
browserifyOptions: {
56-
standalone: 'FirebaseAdapter'
56+
standalone: 'DSFirebaseAdapter'
5757
},
58-
external: ['firebase']
58+
external: ['firebase', 'js-data']
5959
},
6060
dist: {
6161
files: {
@@ -79,6 +79,7 @@ module.exports = function (grunt) {
7979
options: {
8080
files: [
8181
'bower_components/firebase/firebase.js',
82+
'bower_components/js-data/dist/js-data.js',
8283
'dist/js-data-firebase.min.js',
8384
'karma.start.js',
8485
'test/**/*.js'

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"js-data": "0.0.1"
3434
},
3535
"devDependencies": {
36-
"firebase": "~1.0.21"
36+
"firebase": "~1.0.21",
37+
"js-data": "~0.0.1"
3738
}
3839
}

0 commit comments

Comments
 (0)