This is an automated email from the ASF dual-hosted git repository.
bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git
The following commit(s) were added to refs/heads/master by this push:
new fea05c3 link to faker.js
fea05c3 is described below
commit fea05c3b9fd2d8fcdd3e040ad1e2238e527dfe34
Author: Bertrand Delacretaz <[email protected]>
AuthorDate: Wed May 20 16:22:52 2020 +0200
link to faker.js
---
fake-content-generator/index.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fake-content-generator/index.js b/fake-content-generator/index.js
index 85cfa43..46469e8 100644
--- a/fake-content-generator/index.js
+++ b/fake-content-generator/index.js
@@ -1,5 +1,5 @@
// Generate fake content in the Sling initial content JSON format
-// Using faker.js
+// Using faker.js (https://github.com/marak/Faker.js/)
// To run this do "npm install" and then "node index.js" to run it
@@ -77,4 +77,4 @@ for(i=0 ; i < nFiles; i++) {
const output = `${outputFolder}/${page.filename}.json`;
fs.writeFile(output, JSON.stringify(page), err => { if(err) throw err; });
-}
\ No newline at end of file
+}