Skip to content

Commit 2d32335

Browse files
committed
build: packaging stuff
1 parent 38083c1 commit 2d32335

File tree

105 files changed

+15036
-13217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+15036
-13217
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#npm
2-
package-lock.json
32
.directory
43

54
# Logs

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
.github
2+
.directory
3+
rollup.config.js
24
.nyc_output
35
coverage
46
examples
57
node_modules
8+
es
69
test
710
txt
811
.coverals.yml

addCondense.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
44
var getCondense = require('./getCondense.js');
55

66
function addCondense(_) {
7-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
88
return mixOrPatchIn('condense', getCondense(_));
99
}
1010

addCondenseDeep.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getCondense.js');
5-
require('./getPathToString.js');
6-
require('./getEachDeep.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
74
var getCondenseDeep = require('./getCondenseDeep.js');
85

96
function addCondenseDeep(_) {
10-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
118
return mixOrPatchIn('condenseDeep', getCondenseDeep(_));
129
}
1310

addEachDeep.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getPathToString.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
54
var getEachDeep = require('./getEachDeep.js');
65

76
function addEachDeep(_) {
8-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
98
return mixOrPatchIn('eachDeep', getEachDeep(_));
109
}
1110

addExists.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
44
var getExists = require('./getExists.js');
55

66
function addExists(_) {
7-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
88
return mixOrPatchIn('exists', getExists(_), false);
99
}
1010

addFilterDeep.js

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getCondense.js');
5-
require('./getPathToString.js');
6-
require('./getEachDeep.js');
7-
require('./getCondenseDeep.js');
8-
require('./getExists.js');
9-
require('./getObtain.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
104
var getFilterDeep = require('./getFilterDeep.js');
115

126
function addFilterDeep(_) {
13-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
148
return mixOrPatchIn('filterDeep', getFilterDeep(_));
159
}
1610

addForEachDeep.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getPathToString.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
54
var getEachDeep = require('./getEachDeep.js');
65

76
function addForEachDeep(_) {
8-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
98
return mixOrPatchIn('forEachDeep', getEachDeep(_));
109
}
1110

addIndex.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getPathToString.js');
5-
require('./getEachDeep.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
64
var getIndex = require('./getIndex.js');
75

86
function addIndex(_) {
9-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
108
return mixOrPatchIn('index', getIndex(_));
119
}
1210

addKeysDeep.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getPathToString.js');
5-
require('./getEachDeep.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
64
var getPaths = require('./getPaths.js');
75

86
function addKeysDeep(_) {
9-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
108
return mixOrPatchIn('keysDeep', getPaths(_));
119
}
1210

addObtain.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
44
var getObtain = require('./getObtain.js');
55

66
function addObtain(_) {
7-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
88
return mixOrPatchIn('obtain', getObtain(_), true);
99
}
1010

addOmitDeep.js

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getCondense.js');
5-
require('./getPathToString.js');
6-
require('./getEachDeep.js');
7-
require('./getCondenseDeep.js');
8-
require('./getExists.js');
9-
require('./getObtain.js');
10-
require('./getFilterDeep.js');
11-
require('./getPathMatches.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
124
var getOmitDeep = require('./getOmitDeep.js');
135

146
function addOmitDeep(_) {
15-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
168
return mixOrPatchIn('omitDeep', getOmitDeep(_));
179
}
1810

addPathMatches.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getPathToString.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
54
var getPathMatches = require('./getPathMatches.js');
65

76
function addPathMatches(_) {
8-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
98
return mixOrPatchIn('pathMatches', getPathMatches(_), false);
109
}
1110

addPathToString.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
44
var getPathToString = require('./getPathToString.js');
55

66
function addPathToString(_) {
7-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
88
return mixOrPatchIn('pathToString', getPathToString(_), false);
99
}
1010

addPaths.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getPathToString.js');
5-
require('./getEachDeep.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
64
var getPaths = require('./getPaths.js');
75

86
function addPaths(_) {
9-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
108
return mixOrPatchIn('paths', getPaths(_));
119
}
1210

addPickDeep.js

+2-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
11
'use strict';
22

3-
var __chunk_1 = require('./chunk-27bec025.js');
4-
require('./getCondense.js');
5-
require('./getPathToString.js');
6-
require('./getEachDeep.js');
7-
require('./getCondenseDeep.js');
8-
require('./getExists.js');
9-
require('./getObtain.js');
10-
require('./getFilterDeep.js');
11-
require('./getPathMatches.js');
12-
require('./getOmitDeep.js');
3+
var __chunk_1 = require('./private/getMixOrPatchIn.js');
134
var getPickDeep = require('./getPickDeep.js');
145

156
function addPickDeep(_) {
16-
var mixOrPatchIn = __chunk_1.getMixOrPatchIn(_);
7+
var mixOrPatchIn = __chunk_1.default(_);
178
return mixOrPatchIn('pickDeep', getPickDeep(_));
189
}
1910

browser/deepdash.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browser/deepdash.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browser/deepdash.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browser/deepdash.min.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browser/deepdash.standalone.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browser/deepdash.standalone.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browser/deepdash.standalone.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browser/deepdash.standalone.min.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chunk-03173d1d.js

-46
This file was deleted.

chunk-1716fc36.js

-18
This file was deleted.

chunk-38e2ecce.js

-5
This file was deleted.

chunk-4b9ace32.js

-10
This file was deleted.

chunk-51f4d9a8.js

-22
This file was deleted.

0 commit comments

Comments
 (0)