Skip to content

Commit f568bc2

Browse files
committed
Closes #33
1 parent 38350d7 commit f568bc2

File tree

14 files changed

+877
-38
lines changed

14 files changed

+877
-38
lines changed

.npmignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.*
2+
bower.json
3+
*.iml
4+
.idea/
5+
test/
6+
coverage/
7+
bower_components/
8+
karma*
9+
guide/
10+
doc/

Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ module.exports = function (grunt) {
7272
files: {
7373
'dist/angular-data.js': ['src/index.js']
7474
},
75-
// TODO: There's got to be a better way to consume observe-js without it polluting the global space
7675
options: {
7776
alias: [
78-
'lib/observe-js.js:observejs',
77+
'lib/observe-js/observe-js.js:observejs',
7978
'src/errors/index.js:errors',
8079
'src/utils/index.js:utils'
8180
],
81+
// TODO: There's got to be a better way to consume observe-js without it polluting the global space
8282
postBundleCB: function (err, src, next) {
8383
if (err) {
8484
next(err);

bower.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,23 @@
1111
"main": "./dist/angular-data.min.js",
1212
"ignore": [
1313
".idea/",
14-
".bowerrc",
14+
".*",
1515
"*.iml",
1616
"src/",
17+
"lib/",
1718
"doc/",
1819
"guide/",
1920
"coverage/",
20-
".jshintrc",
2121
"Gruntfile.js",
2222
"node_modules/",
2323
"test/",
24+
"package.json",
2425
"karma.conf.js",
25-
".gitignore",
26-
".travis.yml"
26+
"karma.start.js"
2727
],
2828
"devDependencies": {
2929
"angular": "~1.2.8",
30-
"angular-mocks": "~1.2.8"
30+
"angular-mocks": "~1.2.8",
31+
"observe-js": "~0.2.0"
3132
}
3233
}

0 commit comments

Comments
 (0)