Skip to content

Commit c97fc20

Browse files
rel 0.3.1
1 parent 9183473 commit c97fc20

File tree

6 files changed

+23
-3
lines changed

6 files changed

+23
-3
lines changed

.jsbeautifyrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"js": {
3+
"indent_char": " ",
4+
"indent_size": 2
5+
}
6+
}

.jshintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/**

.jshintrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"node": true,
3+
"mocha": true,
4+
"strict": true,
5+
"laxcomma": true,
6+
"nomen": false,
7+
"indent": 2
8+
}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ all: deps min
99
min:
1010
$(UGLIFY) index.js \
1111
-o $(OUTPUT) \
12-
-r '$,require,exports,window,global' -m \
12+
-r '$,require,exports,module,window,global' -m \
1313
--comments '/^!/'
1414

1515
deps:

releases/deep-diff-0.3.1.min.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/tests.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
};
2222
DeepDiffConflict = DeepDiff;
2323
</script>
24-
<!--script src="../releases/deep-diff-0.3.1.min.js"></script-->
25-
<script src="../index.js"></script>
24+
<script src="../releases/deep-diff-0.3.1.min.js"></script>
25+
<!--script src="../index.js"></script-->
2626
<script>
2727
mocha.setup('bdd');
2828
</script>

0 commit comments

Comments
 (0)