Skip to content

Commit 3c04df9

Browse files
committed
fix@dep rambdax should not update
1 parent 04cb9e2 commit 3c04df9

5 files changed

Lines changed: 11 additions & 22 deletions

File tree

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"type": "node",
99
"request": "launch",
1010
"name": "Launch Program",
11-
"program": "${workspaceFolder}/src/index.js"
11+
"program": "${workspaceFolder}/src/build.js"
1212
}
1313
]
1414
}

package.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,5 @@
3131
"devDependencies": {
3232
"jest": "^24.9.0"
3333
},
34-
"commitMessage": {
35-
"support": [
36-
"new to.delete gist",
37-
"docsify"
38-
],
39-
"feature": [
40-
"remove"
41-
],
42-
"workInProgress": ""
43-
}
34+
"depFn": ["rambdax"]
4435
}

src/_modules/bookmarksToLinks.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ const GITHUB_MARKER = 'https://github.com/'
99

1010
async function bookmarksToLinks(destinationFilePath){
1111
console.log({ destinationFilePath })
12-
const asText = await readFile(resolve(__dirname, `../../bookmarks-${ today }.json`))
12+
const sourcePath = resolve(__dirname, `../../bookmarks-${ today }.json`)
13+
console.log({sourcePath})
14+
const asText = await readFile(sourcePath)
1315

1416
const githubRepos = asText
1517
.toString()

src/build.js

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,10 @@ const {
55
allTrue,
66
anyTrue,
77
complement,
8-
filter,
98
flatten,
10-
includes,
11-
map,
129
mapAsync,
1310
prop,
1411
reject,
15-
remove,
16-
replace,
1712
s,
1813
sort,
1914
template,
@@ -218,11 +213,11 @@ async function populate({
218213
}
219214

220215
populate({
221-
bookmarks : 0,
222-
fromSelfrefactor : 0,
223-
updateSecondary : 0,
224-
createData : 0,
225-
score : 0,
216+
bookmarks : 1,
217+
fromSelfrefactor : 1,
218+
updateSecondary : 1,
219+
createData : 1,
220+
score : 1,
226221
createReadme : 1,
227222
})
228223
.then(console.log)

src/gists.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"links":[
3+
"https://gist.githubusercontent.com/selfrefactor/aad1c5d78e6e22fb5d364efbfedeea21/raw/3b7a9e92811b3f94709eeacd07a49a7ee5f8f176/ToDelete__July_2020",
34
"https://gist.githubusercontent.com/selfrefactor/aad1c5d78e6e22fb5d364efbfedeea21/raw/dc9f19cb0959ac3833560d2b2b9db1db7c13664d/ToDelete_March20",
45
"https://gist.githubusercontent.com/selfrefactor/aad1c5d78e6e22fb5d364efbfedeea21/raw/c2ba8b0b5d6d341dd8344dd3627591dae085bd6b/ToDelete_Feb20",
56
"https://gist.githubusercontent.com/selfrefactor/aad1c5d78e6e22fb5d364efbfedeea21/raw/93ba014a2094c7a0c91f3cf11ab232708bf24bcd/ToDelete_November19"

0 commit comments

Comments
 (0)