0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-03 23:09:17 -05:00
verdaccio/test/e2e-cli/projects/scoped_basic/index.js

7 lines
129 B
JavaScript
Raw Normal View History

2020-08-13 23:36:23 +02:00
module.exports = function () {
const message = 'this is a scoped basic project';
console.log(message);
return message;
};