Skip to content

Commit

Permalink
Merge pull request #78 from Lullabot/noticket--fix-dev-msg
Browse files Browse the repository at this point in the history
noticket: update dev msg, ignore jetbrains junk.
  • Loading branch information
sirkitree authored Nov 29, 2024
2 parents 03f1b28 + 9dbe2b3 commit 81b91ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
node_modules
_site
.DS_Store
.idea/
2 changes: 1 addition & 1 deletion devMsg.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const fs = require('fs');
// for use when developing
fs.readdir(`${__dirname}/src/ebooks`, (err, files) => {
files = files.filter(item => !(/(^|\/)\.[^\/\.]/g).test(item)); // ignore hidden files
files = files.map((file) => `http://localhost:8080/ebooks/${file}/cover`);
files = files.map((file) => `http://localhost:8081/ebooks/${file}/cover`);
files.unshift('Select any ebook below when contributing:');
if (err)
console.log(err);
Expand Down

0 comments on commit 81b91ab

Please sign in to comment.