Add production dependencies
This commit is contained in:
parent
5a0114f3e2
commit
579ccdc29f
12113 changed files with 978046 additions and 3 deletions
10
node_modules/clean-css/lib/optimizer/level-2/invalid-property-error.js
generated
vendored
Normal file
10
node_modules/clean-css/lib/optimizer/level-2/invalid-property-error.js
generated
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
function InvalidPropertyError(message) {
|
||||
this.name = 'InvalidPropertyError';
|
||||
this.message = message;
|
||||
this.stack = (new Error()).stack;
|
||||
}
|
||||
|
||||
InvalidPropertyError.prototype = Object.create(Error.prototype);
|
||||
InvalidPropertyError.prototype.constructor = InvalidPropertyError;
|
||||
|
||||
module.exports = InvalidPropertyError;
|
Loading…
Add table
Add a link
Reference in a new issue