Commit 05c1a0ae31c0547a316baa6497637eba2c85df73
Merge branch 'Happy0-canRender'
Matt McKegg committed on 10/19/2017, 2:37:09 AMParent: 418ac35b065b1ea7acf2d01ec7f1de61a5a721df
Parent: 428676644191b3fcf658e49167d835bb682488a2
Files changed
contact/async.js | changed |
contact/obs.js | changed |
example/index.js | changed |
feed/pull/channel.js | changed |
feed/pull/public.js | changed |
feed/pull/rollup.js | changed |
feed/pull/type.js | changed |
message/async/name.js | changed |
message/html/author.js | changed |
message/html/layout/default.js | changed |
message/html/layout/mini.js | changed |
message/html/render/channel.js | changed |
message/html/render/issue.js | changed |
message/html/render/post.js | changed |
message/html/render/vote.js | changed |
message/obs/likes.js | changed |
package-lock.json | changed |
contact/async.js | ||
---|---|---|
@@ -1,7 +1,5 @@ | ||
1 | 1 … | var nest = require('depnest') |
2 | -var onceTrue = require('mutant/once-true') | |
3 | -var resolve = require('mutant/resolve') | |
4 | 2 … | var ref = require('ssb-ref') |
5 | 3 … | |
6 | 4 … | exports.needs = nest({ |
7 | 5 … | 'contact.obs.following': 'first', |
@@ -57,5 +55,4 @@ | ||
57 | 55 … | blocking: false |
58 | 56 … | }, cb) |
59 | 57 … | } |
60 | 58 … | } |
61 | - |
contact/obs.js | ||
---|---|---|
@@ -1,11 +1,13 @@ | ||
1 … | +'use strict' | |
2 … | + | |
1 | 3 … | var nest = require('depnest') |
2 | 4 … | var { Value, computed } = require('mutant') |
3 | 5 … | var pull = require('pull-stream') |
4 | 6 … | var ref = require('ssb-ref') |
5 | 7 … | |
6 | 8 … | exports.needs = nest({ |
7 | - 'sbot.pull.stream': 'first', | |
9 … | + 'sbot.pull.stream': 'first' | |
8 | 10 … | }) |
9 | 11 … | |
10 | 12 … | exports.gives = nest({ |
11 | 13 … | 'contact.obs': ['following', 'followers', 'blocking', 'blockers'], |
@@ -71,17 +73,17 @@ | ||
71 | 73 … | if (ref.isFeed(source)) { |
72 | 74 … | update(source, item[source], cache) |
73 | 75 … | |
74 | 76 … | // generate reverse lookup |
75 | - for (var dest in item[source]) { | |
77 … | + for (let dest in item[source]) { | |
76 | 78 … | reverse[dest] = reverse[dest] || {} |
77 | 79 … | reverse[dest][source] = item[source][dest] |
78 | 80 … | } |
79 | 81 … | } |
80 | 82 … | } |
81 | 83 … | |
82 | 84 … | // populate reverse observable cache |
83 | - for (var dest in reverse) { | |
85 … | + for (let dest in reverse) { | |
84 | 86 … | update(dest, reverse[dest], reverseCache) |
85 | 87 … | } |
86 | 88 … | |
87 | 89 … | sync.set(true) |
example/index.js | ||
---|---|---|
@@ -1,8 +1,9 @@ | ||
1 | 1 … | const combine = require('depject') |
2 | 2 … | const apply = require('depject/apply') |
3 | 3 … | const h = require('mutant/h') |
4 | 4 … | const fs = require('fs') |
5 … | +const Path = require('path') | |
5 | 6 … | |
6 | 7 … | const modules = require('../') |
7 | 8 … | var api = entry(combine(modules)) |
8 | 9 … | |
@@ -12,9 +13,9 @@ | ||
12 | 13 … | // public: 'first' |
13 | 14 … | // } |
14 | 15 … | // })() |
15 | 16 … | |
16 | -require('insert-css')(fs.readFileSync(__dirname + '/styles.css', 'utf8')) | |
17 … | +require('insert-css')(fs.readFileSync(Path.join(__dirname, 'styles.css'), 'utf8')) | |
17 | 18 … | |
18 | 19 … | var app = h('div.App', [ |
19 | 20 … | api.feed.html.render(api.feed.pull.public) |
20 | 21 … | ]) |
feed/pull/channel.js | ||
---|---|---|
@@ -4,9 +4,9 @@ | ||
4 | 4 … | |
5 | 5 … | exports.gives = nest('feed.pull.channel') |
6 | 6 … | exports.needs = nest({ |
7 | 7 … | 'sbot.pull.backlinks': 'first', |
8 | - 'message.sync.isBlocked': 'first', | |
8 … | + 'message.sync.isBlocked': 'first' | |
9 | 9 … | }) |
10 | 10 … | |
11 | 11 … | exports.create = function (api) { |
12 | 12 … | return nest('feed.pull.channel', function (channel) { |
feed/pull/public.js | ||
---|---|---|
@@ -3,9 +3,9 @@ | ||
3 | 3 … | |
4 | 4 … | exports.gives = nest('feed.pull.public') |
5 | 5 … | exports.needs = nest({ |
6 | 6 … | 'sbot.pull.feed': 'first', |
7 | - 'message.sync.isBlocked': 'first', | |
7 … | + 'message.sync.isBlocked': 'first' | |
8 | 8 … | }) |
9 | 9 … | |
10 | 10 … | exports.create = function (api) { |
11 | 11 … | return nest('feed.pull.public', (opts) => { |
feed/pull/rollup.js | ||
---|---|---|
@@ -13,9 +13,9 @@ | ||
13 | 13 … | 'backlinks.obs.for': 'first', |
14 | 14 … | 'sbot.async.get': 'first', |
15 | 15 … | 'message.sync.isBlocked': 'first', |
16 | 16 … | 'message.sync.root': 'first', |
17 | - 'message.sync.unbox': 'first', | |
17 … | + 'message.sync.unbox': 'first' | |
18 | 18 … | }) |
19 | 19 … | |
20 | 20 … | exports.gives = nest('feed.pull.rollup', true) |
21 | 21 … |
feed/pull/type.js | ||
---|---|---|
@@ -4,9 +4,9 @@ | ||
4 | 4 … | |
5 | 5 … | exports.gives = nest('feed.pull.type') |
6 | 6 … | exports.needs = nest({ |
7 | 7 … | 'sbot.pull.messagesByType': 'first', |
8 | - 'message.sync.isBlocked': 'first', | |
8 … | + 'message.sync.isBlocked': 'first' | |
9 | 9 … | }) |
10 | 10 … | |
11 | 11 … | exports.create = function (api) { |
12 | 12 … | return nest('feed.pull.type', (type) => { |
message/async/name.js | ||
---|---|---|
@@ -49,10 +49,10 @@ | ||
49 | 49 … | } |
50 | 50 … | |
51 | 51 … | function titleFromMarkdown (text, max) { |
52 | 52 … | text = text.trim().split('\n', 3).join('\n') |
53 | - text = text.replace(/_|`|\*|\#|^\[@.*?\]|\[|\]|\(\S*?\)/g, '').trim() | |
54 | - text = text.replace(/\:$/, '') | |
53 … | + text = text.replace(/_|`|\*|#|^\[@.*?]|\[|]|\(\S*?\)/g, '').trim() | |
54 … | + text = text.replace(/:$/, '') | |
55 | 55 … | text = text.trim().split('\n', 1)[0].trim() |
56 | 56 … | if (text.length > max) { |
57 | 57 … | text = text.substring(0, max - 2) + '...' |
58 | 58 … | } |
message/html/author.js | ||
---|---|---|
@@ -5,11 +5,11 @@ | ||
5 | 5 … | |
6 | 6 … | exports.gives = nest('message.html.author') |
7 | 7 … | |
8 | 8 … | exports.create = function (api) { |
9 | - return nest('message.html.author', message_author) | |
9 … | + return nest('message.html.author', messageAuthor) | |
10 | 10 … | |
11 | - function message_author (msg) { | |
11 … | + function messageAuthor (msg) { | |
12 | 12 … | return h('div', {title: msg.value.author}, [ |
13 | 13 … | '@', api.about.obs.name(msg.value.author) |
14 | 14 … | ]) |
15 | 15 … | } |
message/html/layout/default.js | ||
---|---|---|
@@ -11,11 +11,11 @@ | ||
11 | 11 … | |
12 | 12 … | exports.gives = nest('message.html.layout') |
13 | 13 … | |
14 | 14 … | exports.create = (api) => { |
15 | - return nest('message.html.layout', message_layout) | |
15 … | + return nest('message.html.layout', messageLayout) | |
16 | 16 … | |
17 | - function message_layout (msg, opts) { | |
17 … | + function messageLayout (msg, opts) { | |
18 | 18 … | if (!(opts.layout === undefined || opts.layout === 'default')) return |
19 | 19 … | return h('div', { |
20 | 20 … | classList: 'Message' |
21 | 21 … | }, [ |
message/html/layout/mini.js | ||
---|---|---|
@@ -10,11 +10,11 @@ | ||
10 | 10 … | |
11 | 11 … | exports.gives = nest('message.html.layout') |
12 | 12 … | |
13 | 13 … | exports.create = (api) => { |
14 | - return nest('message.html.layout', message_layout) | |
14 … | + return nest('message.html.layout', messageLayout) | |
15 | 15 … | |
16 | - function message_layout (msg, opts) { | |
16 … | + function messageLayout (msg, opts) { | |
17 | 17 … | if (opts.layout !== 'mini') return |
18 | 18 … | return h('div', { |
19 | 19 … | classList: 'Message -mini' |
20 | 20 … | }, [ |
message/html/render/channel.js | ||
---|---|---|
@@ -10,26 +10,42 @@ | ||
10 | 10 … | markdown: 'first' |
11 | 11 … | } |
12 | 12 … | }) |
13 | 13 … | |
14 | -exports.gives = nest('message.html.render') | |
14 … | +exports.gives = nest({ | |
15 … | + 'message.html': { | |
16 … | + canRender: true, | |
17 … | + render: true | |
18 … | + } | |
19 … | +}) | |
15 | 20 … | |
16 | 21 … | exports.create = function (api) { |
17 | - return nest('message.html.render', channel) | |
22 … | + return nest('message.html', { | |
23 … | + canRender: isRenderable, | |
24 … | + render: channel | |
25 … | + }) | |
18 | 26 … | |
19 | 27 … | function channel (msg, opts) { |
20 | - if (msg.value.content.type !== 'channel') return | |
28 … | + if (!isRenderable(msg)) return | |
21 | 29 … | var element = api.message.html.layout(msg, extend({ |
22 | 30 … | content: renderContent(msg), |
23 | 31 … | layout: 'mini' |
24 | 32 … | }, opts)) |
25 | 33 … | |
26 | - return api.message.html.decorate(element, { msg }) | |
34 … | + return api.message.html.decorate(element, { | |
35 … | + msg | |
36 … | + }) | |
27 | 37 … | } |
28 | 38 … | |
29 | 39 … | function renderContent (msg) { |
30 | 40 … | var channel = '#' + msg.value.content.channel |
31 | 41 … | return [ |
32 | - msg.value.content.subscribed ? 'subscribed to channel' : 'unsubscribed from channel', ' ', h('a.channel', {href: channel}, channel) | |
42 … | + msg.value.content.subscribed ? 'subscribed to channel' : 'unsubscribed from channel', ' ', h('a.channel', { | |
43 … | + href: channel | |
44 … | + }, channel) | |
33 | 45 … | ] |
34 | 46 … | } |
47 … | + | |
48 … | + function isRenderable (msg) { | |
49 … | + return msg.value.content.type === 'channel' ? true : undefined | |
50 … | + } | |
35 | 51 … | } |
message/html/render/issue.js | ||
---|---|---|
@@ -10,22 +10,36 @@ | ||
10 | 10 … | markdown: 'first' |
11 | 11 … | } |
12 | 12 … | }) |
13 | 13 … | |
14 | -exports.gives = nest('message.html.render') | |
14 … | +exports.gives = nest({ | |
15 … | + 'message.html': { | |
16 … | + canRender: true, | |
17 … | + render: true | |
18 … | + } | |
19 … | +}) | |
15 | 20 … | |
16 | 21 … | exports.create = function (api) { |
17 | - return nest('message.html.render', function renderMessage (msg, opts) { | |
18 | - if (msg.value.content.type !== 'issue') return | |
19 | - var element = api.message.html.layout(msg, extend({ | |
20 | - content: messageContent(msg), | |
21 | - layout: 'default' | |
22 | - }, opts)) | |
22 … | + return nest('message.html', { | |
23 … | + canRender: isRenderable, | |
24 … | + render: function (msg, opts) { | |
25 … | + if (!isRenderable(msg)) return | |
26 … | + var element = api.message.html.layout(msg, extend({ | |
27 … | + content: messageContent(msg), | |
28 … | + layout: 'default' | |
29 … | + }, opts)) | |
23 | 30 … | |
24 | - return api.message.html.decorate(element, { msg }) | |
31 … | + return api.message.html.decorate(element, { | |
32 … | + msg | |
33 … | + }) | |
34 … | + } | |
25 | 35 … | }) |
26 | 36 … | |
27 | 37 … | function messageContent (data) { |
28 | 38 … | if (!data.value.content || !data.value.content.text) return |
29 | 39 … | return h('div', {}, api.message.html.markdown(data.value.content)) |
30 | 40 … | } |
41 … | + | |
42 … | + function isRenderable (msg) { | |
43 … | + return msg.value.content.type === 'issue' ? true : undefined | |
44 … | + } | |
31 | 45 … | } |
message/html/render/post.js | ||
---|---|---|
@@ -10,22 +10,36 @@ | ||
10 | 10 … | markdown: 'first' |
11 | 11 … | } |
12 | 12 … | }) |
13 | 13 … | |
14 | -exports.gives = nest('message.html.render') | |
14 … | +exports.gives = nest({ | |
15 … | + 'message.html': { | |
16 … | + canRender: true, | |
17 … | + render: true | |
18 … | + } | |
19 … | +}) | |
15 | 20 … | |
16 | 21 … | exports.create = function (api) { |
17 | - return nest('message.html.render', function renderMessage (msg, opts) { | |
18 | - if (msg.value.content.type !== 'post') return | |
19 | - var element = api.message.html.layout(msg, extend({ | |
20 | - title: messageTitle(msg), | |
21 | - content: msg.isBlocked ? 'Content of a blocked user' : messageContent(msg), | |
22 | - layout: 'default' | |
23 | - }, opts)) | |
22 … | + return nest('message.html', { | |
23 … | + canRender: isRenderable, | |
24 … | + render: function (msg, opts) { | |
25 … | + if (!isRenderable(msg)) return | |
26 … | + var element = api.message.html.layout(msg, extend({ | |
27 … | + title: messageTitle(msg), | |
28 … | + content: msg.isBlocked ? 'Content of a blocked user' : messageContent(msg), | |
29 … | + layout: 'default' | |
30 … | + }, opts)) | |
24 | 31 … | |
25 | - return api.message.html.decorate(element, { msg }) | |
32 … | + return api.message.html.decorate(element, { | |
33 … | + msg | |
34 … | + }) | |
35 … | + } | |
26 | 36 … | }) |
27 | 37 … | |
38 … | + function isRenderable (msg) { | |
39 … | + return (msg.value.content.type === 'post') ? true : undefined | |
40 … | + } | |
41 … | + | |
28 | 42 … | function messageContent (data) { |
29 | 43 … | if (!data.value.content || !data.value.content.text) return |
30 | 44 … | return h('div', {}, api.message.html.markdown(data.value.content)) |
31 | 45 … | } |
message/html/render/vote.js | ||
---|---|---|
@@ -1,5 +1,4 @@ | ||
1 | -var h = require('mutant/h') | |
2 | 1 … | var nest = require('depnest') |
3 | 2 … | var extend = require('xtend') |
4 | 3 … | |
5 | 4 … | exports.needs = nest({ |
@@ -10,23 +9,35 @@ | ||
10 | 9 … | markdown: 'first' |
11 | 10 … | } |
12 | 11 … | }) |
13 | 12 … | |
14 | -exports.gives = nest('message.html.render') | |
13 … | +exports.gives = nest({ | |
14 … | + 'message.html': { | |
15 … | + canRender: true, | |
16 … | + render: true | |
17 … | + } | |
18 … | +}) | |
15 | 19 … | |
16 | 20 … | exports.create = function (api) { |
17 | - return nest('message.html.render', vote) | |
21 … | + return nest('message.html', { | |
22 … | + canRender: isRenderable, | |
23 … | + render: vote | |
24 … | + }) | |
18 | 25 … | |
19 | 26 … | function vote (msg, opts) { |
20 | - if (msg.value.content.type !== 'vote') return | |
27 … | + if (!isRenderable(msg)) return | |
21 | 28 … | var element = api.message.html.layout(msg, extend({ |
22 | 29 … | content: renderContent(msg), |
23 | 30 … | layout: 'mini' |
24 | 31 … | }, opts)) |
25 | 32 … | |
26 | 33 … | return api.message.html.decorate(element, { msg }) |
27 | 34 … | } |
28 | 35 … | |
36 … | + function isRenderable (msg) { | |
37 … | + return msg.value.content.type === 'vote' ? true : undefined | |
38 … | + } | |
39 … | + | |
29 | 40 … | function renderContent (msg) { |
30 | 41 … | var link = msg.value.content.vote.link |
31 | 42 … | return [ |
32 | 43 … | msg.value.content.vote.value > 0 ? 'dug' : 'undug', ' ', api.message.html.link(link) |
message/obs/likes.js | ||
---|---|---|
@@ -1,9 +1,8 @@ | ||
1 | 1 … | var nest = require('depnest') |
2 | 2 … | var ref = require('ssb-ref') |
3 | 3 … | var MutantArray = require('mutant/array') |
4 | 4 … | var concat = require('mutant/concat') |
5 | -var watch = require('mutant/watch') | |
6 | 5 … | |
7 | 6 … | var { computed } = require('mutant') |
8 | 7 … | |
9 | 8 … | exports.needs = nest({ |
package-lock.json | |||
---|---|---|---|
@@ -1,7 +1,7 @@ | |||
1 | 1 … | { | |
2 | 2 … | "name": "patchcore", | |
3 | - "version": "1.12.1", | ||
3 … | + "version": "1.13.3", | ||
4 | 4 … | "lockfileVersion": 1, | |
5 | 5 … | "requires": true, | |
6 | 6 … | "dependencies": { | |
7 | 7 … | "acorn": { | |
@@ -670,9 +670,9 @@ | |||
670 | 670 … | "dependencies": { | |
671 | 671 … | "glob": { | |
672 | 672 … | "version": "7.1.2", | |
673 | 673 … | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", | |
674 | - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", | ||
674 … | + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", | ||
675 | 675 … | "dev": true, | |
676 | 676 … | "requires": { | |
677 | 677 … | "fs.realpath": "1.0.0", | |
678 | 678 … | "inflight": "1.0.6", | |
@@ -994,9 +994,9 @@ | |||
994 | 994 … | }, | |
995 | 995 … | "glob": { | |
996 | 996 … | "version": "7.1.2", | |
997 | 997 … | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", | |
998 | - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", | ||
998 … | + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", | ||
999 | 999 … | "dev": true, | |
1000 | 1000 … | "requires": { | |
1001 | 1001 … | "fs.realpath": "1.0.0", | |
1002 | 1002 … | "inflight": "1.0.6", | |
@@ -1268,9 +1268,9 @@ | |||
1268 | 1268 … | }, | |
1269 | 1269 … | "globals": { | |
1270 | 1270 … | "version": "9.18.0", | |
1271 | 1271 … | "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", | |
1272 | - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" | ||
1272 … | + "integrity": "sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo=" | ||
1273 | 1273 … | }, | |
1274 | 1274 … | "globby": { | |
1275 | 1275 … | "version": "5.0.0", | |
1276 | 1276 … | "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", | |
@@ -1287,9 +1287,9 @@ | |||
1287 | 1287 … | "dependencies": { | |
1288 | 1288 … | "glob": { | |
1289 | 1289 … | "version": "7.1.2", | |
1290 | 1290 … | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", | |
1291 | - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", | ||
1291 … | + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", | ||
1292 | 1292 … | "dev": true, | |
1293 | 1293 … | "requires": { | |
1294 | 1294 … | "fs.realpath": "1.0.0", | |
1295 | 1295 … | "inflight": "1.0.6", | |
@@ -1301,9 +1301,9 @@ | |||
1301 | 1301 … | }, | |
1302 | 1302 … | "minimatch": { | |
1303 | 1303 … | "version": "3.0.4", | |
1304 | 1304 … | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", | |
1305 | - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", | ||
1305 … | + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", | ||
1306 | 1306 … | "dev": true, | |
1307 | 1307 … | "requires": { | |
1308 | 1308 … | "brace-expansion": "1.1.8" | |
1309 | 1309 … | } | |
@@ -2193,9 +2193,9 @@ | |||
2193 | 2193 … | "dependencies": { | |
2194 | 2194 … | "glob": { | |
2195 | 2195 … | "version": "7.1.2", | |
2196 | 2196 … | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", | |
2197 | - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", | ||
2197 … | + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", | ||
2198 | 2198 … | "dev": true, | |
2199 | 2199 … | "requires": { | |
2200 | 2200 … | "fs.realpath": "1.0.0", | |
2201 | 2201 … | "inflight": "1.0.6", | |
@@ -2207,9 +2207,9 @@ | |||
2207 | 2207 … | }, | |
2208 | 2208 … | "minimatch": { | |
2209 | 2209 … | "version": "3.0.4", | |
2210 | 2210 … | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", | |
2211 | - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", | ||
2211 … | + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", | ||
2212 | 2212 … | "dev": true, | |
2213 | 2213 … | "requires": { | |
2214 | 2214 … | "brace-expansion": "1.1.8" | |
2215 | 2215 … | } | |
@@ -2285,9 +2285,9 @@ | |||
2285 | 2285 … | "dependencies": { | |
2286 | 2286 … | "glob": { | |
2287 | 2287 … | "version": "7.1.2", | |
2288 | 2288 … | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", | |
2289 | - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", | ||
2289 … | + "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", | ||
2290 | 2290 … | "dev": true, | |
2291 | 2291 … | "requires": { | |
2292 | 2292 … | "fs.realpath": "1.0.0", | |
2293 | 2293 … | "inflight": "1.0.6", | |
@@ -2299,9 +2299,9 @@ | |||
2299 | 2299 … | }, | |
2300 | 2300 … | "minimatch": { | |
2301 | 2301 … | "version": "3.0.4", | |
2302 | 2302 … | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", | |
2303 | - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", | ||
2303 … | + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", | ||
2304 | 2304 … | "dev": true, | |
2305 | 2305 … | "requires": { | |
2306 | 2306 … | "brace-expansion": "1.1.8" | |
2307 | 2307 … | } |
Built with git-ssb-web