UNPKG
lerna-changelog
Version:
beta (0.8.0-beta.2)
latest (2.2.0)
2.2.0
2.1.0
2.0.1
2.0.0
1.0.1
1.0.0
0.8.3
0.8.2
0.8.1
0.8.0
0.8.0-beta.2
0.8.0-beta.1
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
Generate a changelog for a lerna monorepo
github.com/lerna/lerna-changelog
lerna/lerna-changelog
lerna-changelog
/
lib
/
configuration-error.js
11 lines
(10 loc)
•
289 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
ConfigurationError
{
constructor
(
message
) {
this
.
name
=
"ConfigurationError"
;
Error
.
apply
(
this
,
arguments
);
this
.
message
= message; } }
exports
.
default
=
ConfigurationError
;