mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
Remove ShellJS copy and use the NPM version
There is no need to have a copy of ShellJS in the repository as it is also available on NPM. The NPM version is also much newer. This way we do not have to update this anymore and let NPM do that automatically.
This commit is contained in:
parent
d156007804
commit
70b6eb09a8
9 changed files with 10 additions and 2503 deletions
9
make.js
9
make.js
|
@ -20,7 +20,14 @@
|
|||
|
||||
'use strict';
|
||||
|
||||
require('./external/shelljs/make');
|
||||
try {
|
||||
require('shelljs/make');
|
||||
} catch (e) {
|
||||
console.log('ShellJS is not installed. Run "npm install" to install ' +
|
||||
'all dependencies.');
|
||||
return;
|
||||
}
|
||||
|
||||
var builder = require('./external/builder/builder.js');
|
||||
var crlfchecker = require('./external/crlfchecker/crlfchecker.js');
|
||||
var path = require('path');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue