git ssb

16+

Dominic / patchbay



Commit bd801655ad6ba5f09a31d3037c468c45f3ff0bb7

mutant gets it's npm name

mix irving committed on 2/10/2017, 7:48:35 AM
Parent: 97b62ef235d035b0dafdc8e7908adfd8e6a11c28

Files changed

h.jschanged
modules_basic/about.jschanged
modules_basic/avatar/edit.jschanged
modules_basic/avatar/profile.jschanged
modules_basic/compose.jschanged
modules_basic/message/author.jschanged
modules_core/app.jschanged
modules_extra/network.jschanged
modules_extra/search.jschanged
package.jsonchanged
h.jsView
@@ -1,4 +1,4 @@
1-const { h } = require('@mmckegg/mutant')
1 +const { h } = require('mutant')
22
33 module.exports = require('micro-css/h')(h)
44
modules_basic/about.jsView
@@ -1,7 +1,7 @@
11 const fs = require('fs')
22 const h = require('../h')
3-const { when } = require('@mmckegg/mutant')
3 +const { when } = require('mutant')
44
55 exports.needs = {
66 blob_url: 'first',
77 markdown: 'first'
modules_basic/avatar/edit.jsView
@@ -7,9 +7,9 @@
77 const h = require('../../h')
88 const {
99 Value, Array: MutantArray, Dict: MutantObject, Struct,
1010 map, computed, when, dictToCollection
11-} = require('@mmckegg/mutant')
11 +} = require('mutant')
1212 const pull = require('pull-stream')
1313 const getAvatar = require('ssb-avatar')
1414 const ref = require('ssb-ref')
1515 const visualize = require('visualize-buffer')
modules_basic/avatar/profile.jsView
@@ -4,9 +4,9 @@
44 const { unique, drain } = pull
55 const {
66 Array: MutantArray,
77 map, computed, when, dictToCollection
8-} = require('@mmckegg/mutant')
8 +} = require('mutant')
99
1010
1111 exports.needs = {
1212 avatar_image_link: 'first',
modules_basic/compose.jsView
@@ -1,8 +1,8 @@
11 'use strict'
22 const fs = require('fs')
33 const h = require('../h')
4-const { Value, when } = require('@mmckegg/mutant')
4 +const { Value, when } = require('mutant')
55 const mentions = require('ssb-mentions')
66
77 exports.needs = {
88 suggest_mentions: 'map', //<-- THIS MUST BE REWRITTEN
modules_basic/message/author.jsView
@@ -1,7 +1,7 @@
11 const fs = require('fs')
22 const h = require('../../h')
3-const { when }= require('@mmckegg/mutant')
3 +const { when }= require('mutant')
44
55 exports.needs = {
66 avatar_link: 'first',
77 avatar_image: 'first',
modules_core/app.jsView
@@ -1,7 +1,7 @@
11 const fs = require('fs')
22 const h = require('../h')
3-const { Value } = require('@mmckegg/mutant')
3 +const { Value } = require('mutant')
44 const insertCss = require('insert-css')
55
66 exports.needs = {
77 screen_view: 'first',
modules_extra/network.jsView
@@ -5,9 +5,9 @@
55
66 const {
77 Struct, Value, Dict,
88 dictToCollection, map: mutantMap, when, computed
9-} = require('@mmckegg/mutant')
9 +} = require('mutant')
1010
1111 exports.needs = {
1212 avatar_image_link: 'first',
1313 avatar_name_link: 'first',
modules_extra/search.jsView
@@ -1,7 +1,7 @@
11 const h = require('../h')
22 const fs = require('fs')
3-const { Struct, Value, when, computed } = require('@mmckegg/mutant')
3 +const { Struct, Value, when, computed } = require('mutant')
44 const u = require('../util')
55 const pull = require('pull-stream')
66 const Scroller = require('pull-scroll')
77 const TextNodeSearcher = require('text-node-searcher')
package.jsonView
@@ -14,9 +14,9 @@
1414 "graph": "node index.js | dot -Tsvg > graph.svg",
1515 "test": "browserify modules_*/index.test.js | tape-run"
1616 },
1717 "dependencies": {
18- "@mmckegg/mutant": "^3.12.0",
18 + "mutant": "^3.12.0",
1919 "brfs": "^1.4.3",
2020 "cont": "^1.0.3",
2121 "dataurl-": "^0.1.0",
2222 "depject": "^3.1.4",

Built with git-ssb-web