Skip to content

Commit

Permalink
fix: MSYS Compatible npm scripts (since using devDependencies) (#104)
Browse files Browse the repository at this point in the history
Co-authored-by: Shinigami <chrissi92@hotmail.de>
  • Loading branch information
fzn0x and Shinigami92 authored Jan 13, 2022
1 parent d9b6e5d commit 7d6f2d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions build/gulp-tasks/jsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const jsdoc = require('gulp-jsdoc3');

const config = require('../../conf.json');

module.exports = function jsdoc (cb) {
src(['./README.md', './lib/*.js'], { read: false })
.pipe(jsdoc(config, cb));
};
module.exports = function jsdoc(cb) {
src(['./README.md', './lib/*.js'], { read: false }).pipe(jsdoc(config, cb));
};
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"url": "https://github.com/faker-js/faker.git"
},
"scripts": {
"browser": "./node_modules/.bin/gulp browser",
"jsdoc": "./node_modules/.bin/gulp jsdoc",
"browser": "gulp browser",
"jsdoc": "gulp jsdoc",
"format": "prettier --write .",
"lint": "echo 'TODO eslint'",
"test": "node_modules/.bin/mocha test/*.*.js",
"test": "mocha test/*.*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
Expand Down

0 comments on commit 7d6f2d8

Please sign in to comment.