@phillips/seldon 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/_commonjsHelpers.js +6 -0
- package/dist/_virtual/index.js +4 -0
- package/dist/components/Button/Button.js +24 -0
- package/dist/components/Header/Header.js +44 -0
- package/dist/index.js +8 -0
- package/dist/node_modules/classnames/index.js +42 -0
- package/dist/pages/Page.js +58 -0
- package/dist/scss/components/Button/_button.scss +39 -0
- package/dist/scss/components/Header/_header.scss +32 -0
- package/dist/scss/pages/_page.scss +69 -0
- package/dist/scss/styles.scss +5 -0
- package/dist/src/components/Button/Button.d.ts +31 -0
- package/dist/src/components/Header/Header.d.ts +11 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/pages/Page.d.ts +3 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/utils/index.js +4 -0
- package/dist/vite.svg +1 -0
- package/package.json +17 -6
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import m from "../../node_modules/classnames/index.js";
|
|
3
|
+
import { px as t } from "../../utils/index.js";
|
|
4
|
+
const c = ({
|
|
5
|
+
primary: n = !1,
|
|
6
|
+
size: e = "medium",
|
|
7
|
+
backgroundColor: s,
|
|
8
|
+
label: r,
|
|
9
|
+
id: o,
|
|
10
|
+
...u
|
|
11
|
+
}) => /* @__PURE__ */ a(
|
|
12
|
+
"button",
|
|
13
|
+
{
|
|
14
|
+
"data-testid": o ? `button-${o}` : "button",
|
|
15
|
+
type: "button",
|
|
16
|
+
className: m(`${t}-button`, `${t}-button--${e}`, { [`${t}-button--secondary`]: !n }),
|
|
17
|
+
style: { backgroundColor: s },
|
|
18
|
+
...u,
|
|
19
|
+
children: r
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
export {
|
|
23
|
+
c as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { jsx as l, jsxs as e, Fragment as a } from "react/jsx-runtime";
|
|
2
|
+
import i from "../Button/Button.js";
|
|
3
|
+
const s = ({ user: n, onLogin: d, onLogout: r, onCreateAccount: h }) => /* @__PURE__ */ l("header", { children: /* @__PURE__ */ e("div", { className: "storybook-header", children: [
|
|
4
|
+
/* @__PURE__ */ e("div", { children: [
|
|
5
|
+
/* @__PURE__ */ l("svg", { width: "32", height: "32", viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ e("g", { fill: "none", fillRule: "evenodd", children: [
|
|
6
|
+
/* @__PURE__ */ l(
|
|
7
|
+
"path",
|
|
8
|
+
{
|
|
9
|
+
d: "M10 0h12a10 10 0 0110 10v12a10 10 0 01-10 10H10A10 10 0 010 22V10A10 10 0 0110 0z",
|
|
10
|
+
fill: "#FFF"
|
|
11
|
+
}
|
|
12
|
+
),
|
|
13
|
+
/* @__PURE__ */ l(
|
|
14
|
+
"path",
|
|
15
|
+
{
|
|
16
|
+
d: "M5.3 10.6l10.4 6v11.1l-10.4-6v-11zm11.4-6.2l9.7 5.5-9.7 5.6V4.4z",
|
|
17
|
+
fill: "#555AB9"
|
|
18
|
+
}
|
|
19
|
+
),
|
|
20
|
+
/* @__PURE__ */ l(
|
|
21
|
+
"path",
|
|
22
|
+
{
|
|
23
|
+
d: "M27.2 10.6v11.2l-10.5 6V16.5l10.5-6zM15.7 4.4v11L6 10l9.7-5.5z",
|
|
24
|
+
fill: "#91BAF8"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
] }) }),
|
|
28
|
+
/* @__PURE__ */ l("h1", { children: "Acme" })
|
|
29
|
+
] }),
|
|
30
|
+
/* @__PURE__ */ l("div", { children: n ? /* @__PURE__ */ e(a, { children: [
|
|
31
|
+
/* @__PURE__ */ e("span", { className: "welcome", children: [
|
|
32
|
+
"Welcome, ",
|
|
33
|
+
/* @__PURE__ */ l("b", { children: n.name }),
|
|
34
|
+
"!"
|
|
35
|
+
] }),
|
|
36
|
+
/* @__PURE__ */ l(i, { size: "small", onClick: r, label: "Log out" })
|
|
37
|
+
] }) : /* @__PURE__ */ e(a, { children: [
|
|
38
|
+
/* @__PURE__ */ l(i, { size: "small", onClick: d, label: "Log in" }),
|
|
39
|
+
/* @__PURE__ */ l(i, { primary: !0, size: "small", onClick: h, label: "Sign up" })
|
|
40
|
+
] }) })
|
|
41
|
+
] }) });
|
|
42
|
+
export {
|
|
43
|
+
s as default
|
|
44
|
+
};
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getDefaultExportFromCjs as u } from "../../_virtual/_commonjsHelpers.js";
|
|
2
|
+
import { __module as f } from "../../_virtual/index.js";
|
|
3
|
+
/*!
|
|
4
|
+
Copyright (c) 2018 Jed Watson.
|
|
5
|
+
Licensed under the MIT License (MIT), see
|
|
6
|
+
http://jedwatson.github.io/classnames
|
|
7
|
+
*/
|
|
8
|
+
(function(r) {
|
|
9
|
+
(function() {
|
|
10
|
+
var l = {}.hasOwnProperty;
|
|
11
|
+
function s() {
|
|
12
|
+
for (var n = [], o = 0; o < arguments.length; o++) {
|
|
13
|
+
var t = arguments[o];
|
|
14
|
+
if (t) {
|
|
15
|
+
var e = typeof t;
|
|
16
|
+
if (e === "string" || e === "number")
|
|
17
|
+
n.push(t);
|
|
18
|
+
else if (Array.isArray(t)) {
|
|
19
|
+
if (t.length) {
|
|
20
|
+
var a = s.apply(null, t);
|
|
21
|
+
a && n.push(a);
|
|
22
|
+
}
|
|
23
|
+
} else if (e === "object") {
|
|
24
|
+
if (t.toString !== Object.prototype.toString && !t.toString.toString().includes("[native code]")) {
|
|
25
|
+
n.push(t.toString());
|
|
26
|
+
continue;
|
|
27
|
+
}
|
|
28
|
+
for (var i in t)
|
|
29
|
+
l.call(t, i) && t[i] && n.push(i);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
return n.join(" ");
|
|
34
|
+
}
|
|
35
|
+
r.exports ? (s.default = s, r.exports = s) : window.classNames = s;
|
|
36
|
+
})();
|
|
37
|
+
})(f);
|
|
38
|
+
var c = f.exports;
|
|
39
|
+
const v = /* @__PURE__ */ u(c);
|
|
40
|
+
export {
|
|
41
|
+
v as default
|
|
42
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import n from "react";
|
|
3
|
+
import a from "../components/Header/Header.js";
|
|
4
|
+
const c = () => {
|
|
5
|
+
const [r, t] = n.useState();
|
|
6
|
+
return /* @__PURE__ */ o("article", { children: [
|
|
7
|
+
/* @__PURE__ */ e(
|
|
8
|
+
a,
|
|
9
|
+
{
|
|
10
|
+
user: r,
|
|
11
|
+
onLogin: () => t({ name: "Jane Doe" }),
|
|
12
|
+
onLogout: () => t(void 0),
|
|
13
|
+
onCreateAccount: () => t({ name: "Jane Doe" })
|
|
14
|
+
}
|
|
15
|
+
),
|
|
16
|
+
/* @__PURE__ */ o("section", { className: "storybook-page", children: [
|
|
17
|
+
/* @__PURE__ */ e("h2", { children: "Pages in Storybook" }),
|
|
18
|
+
/* @__PURE__ */ o("p", { children: [
|
|
19
|
+
"We recommend building UIs with a",
|
|
20
|
+
" ",
|
|
21
|
+
/* @__PURE__ */ e("a", { href: "https://componentdriven.org", target: "_blank", rel: "noopener noreferrer", children: /* @__PURE__ */ e("strong", { children: "component-driven" }) }),
|
|
22
|
+
" ",
|
|
23
|
+
"process starting with atomic components and ending with pages."
|
|
24
|
+
] }),
|
|
25
|
+
/* @__PURE__ */ e("p", { children: "Render pages with mock data. This makes it easy to build and review page states without needing to navigate to them in your app. Here are some handy patterns for managing page data in Storybook:" }),
|
|
26
|
+
/* @__PURE__ */ o("ul", { children: [
|
|
27
|
+
/* @__PURE__ */ e("li", { children: 'Use a higher-level connected component. Storybook helps you compose such data from the "args" of child component stories' }),
|
|
28
|
+
/* @__PURE__ */ e("li", { children: "Assemble data in the page component from your services. You can mock these services out using Storybook." })
|
|
29
|
+
] }),
|
|
30
|
+
/* @__PURE__ */ o("p", { children: [
|
|
31
|
+
"Get a guided tutorial on component-driven development at",
|
|
32
|
+
" ",
|
|
33
|
+
/* @__PURE__ */ e("a", { href: "https://storybook.js.org/tutorials/", target: "_blank", rel: "noopener noreferrer", children: "Storybook tutorials" }),
|
|
34
|
+
". Read more in the",
|
|
35
|
+
" ",
|
|
36
|
+
/* @__PURE__ */ e("a", { href: "https://storybook.js.org/docs", target: "_blank", rel: "noopener noreferrer", children: "docs" }),
|
|
37
|
+
"."
|
|
38
|
+
] }),
|
|
39
|
+
/* @__PURE__ */ o("div", { className: "tip-wrapper", children: [
|
|
40
|
+
/* @__PURE__ */ e("span", { className: "tip", children: "Tip" }),
|
|
41
|
+
" Adjust the width of the canvas with the",
|
|
42
|
+
" ",
|
|
43
|
+
/* @__PURE__ */ e("svg", { width: "10", height: "10", viewBox: "0 0 12 12", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ e("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ e(
|
|
44
|
+
"path",
|
|
45
|
+
{
|
|
46
|
+
d: "M1.5 5.2h4.8c.3 0 .5.2.5.4v5.1c-.1.2-.3.3-.4.3H1.4a.5.5 0 01-.5-.4V5.7c0-.3.2-.5.5-.5zm0-2.1h6.9c.3 0 .5.2.5.4v7a.5.5 0 01-1 0V4H1.5a.5.5 0 010-1zm0-2.1h9c.3 0 .5.2.5.4v9.1a.5.5 0 01-1 0V2H1.5a.5.5 0 010-1zm4.3 5.2H2V10h3.8V6.2z",
|
|
47
|
+
id: "a",
|
|
48
|
+
fill: "#999"
|
|
49
|
+
}
|
|
50
|
+
) }) }),
|
|
51
|
+
"Viewports addon in the toolbar"
|
|
52
|
+
] })
|
|
53
|
+
] })
|
|
54
|
+
] });
|
|
55
|
+
};
|
|
56
|
+
export {
|
|
57
|
+
c as default
|
|
58
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
@use '../../utils/vars' as *;
|
|
2
|
+
|
|
3
|
+
.#{$px}-button {
|
|
4
|
+
background-color: #1ea7fd;
|
|
5
|
+
border: 0;
|
|
6
|
+
border-radius: 3rem;
|
|
7
|
+
color: white;
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
display: inline-block;
|
|
10
|
+
font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
11
|
+
font-weight: 700;
|
|
12
|
+
line-height: 1;
|
|
13
|
+
min-width: 4rem;
|
|
14
|
+
padding: 0.5rem 1rem;
|
|
15
|
+
|
|
16
|
+
&--secondary {
|
|
17
|
+
color: $text-color;
|
|
18
|
+
background-color: transparent;
|
|
19
|
+
box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 1px inset;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&--small {
|
|
23
|
+
font-size: 0.75rem;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&--medium {
|
|
27
|
+
font-size: 0.875rem;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&--large {
|
|
31
|
+
font-size: 1rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
* {
|
|
35
|
+
margin: 0
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.storybook-header {
|
|
2
|
+
font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
3
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
4
|
+
padding: 15px 20px;
|
|
5
|
+
display: flex;
|
|
6
|
+
align-items: center;
|
|
7
|
+
justify-content: space-between;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.storybook-header svg {
|
|
11
|
+
display: inline-block;
|
|
12
|
+
vertical-align: top;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.storybook-header h1 {
|
|
16
|
+
font-weight: 700;
|
|
17
|
+
font-size: 20px;
|
|
18
|
+
line-height: 1;
|
|
19
|
+
margin: 6px 0 6px 10px;
|
|
20
|
+
display: inline-block;
|
|
21
|
+
vertical-align: top;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.storybook-header button + button {
|
|
25
|
+
margin-left: 10px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.storybook-header .welcome {
|
|
29
|
+
color: #333;
|
|
30
|
+
font-size: 14px;
|
|
31
|
+
margin-right: 10px;
|
|
32
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
.storybook-page {
|
|
2
|
+
font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
3
|
+
font-size: 14px;
|
|
4
|
+
line-height: 24px;
|
|
5
|
+
padding: 48px 20px;
|
|
6
|
+
margin: 0 auto;
|
|
7
|
+
max-width: 600px;
|
|
8
|
+
color: #333;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.storybook-page h2 {
|
|
12
|
+
font-weight: 700;
|
|
13
|
+
font-size: 32px;
|
|
14
|
+
line-height: 1;
|
|
15
|
+
margin: 0 0 4px;
|
|
16
|
+
display: inline-block;
|
|
17
|
+
vertical-align: top;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.storybook-page p {
|
|
21
|
+
margin: 1em 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.storybook-page a {
|
|
25
|
+
text-decoration: none;
|
|
26
|
+
color: #1ea7fd;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.storybook-page ul {
|
|
30
|
+
padding-left: 30px;
|
|
31
|
+
margin: 1em 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.storybook-page li {
|
|
35
|
+
margin-bottom: 8px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.storybook-page .tip {
|
|
39
|
+
display: inline-block;
|
|
40
|
+
border-radius: 1em;
|
|
41
|
+
font-size: 11px;
|
|
42
|
+
line-height: 12px;
|
|
43
|
+
font-weight: 700;
|
|
44
|
+
background: #e7fdd8;
|
|
45
|
+
color: #66bf3c;
|
|
46
|
+
padding: 4px 12px;
|
|
47
|
+
margin-right: 10px;
|
|
48
|
+
vertical-align: top;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.storybook-page .tip-wrapper {
|
|
52
|
+
font-size: 13px;
|
|
53
|
+
line-height: 20px;
|
|
54
|
+
margin-top: 40px;
|
|
55
|
+
margin-bottom: 40px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.storybook-page .tip-wrapper svg {
|
|
59
|
+
display: inline-block;
|
|
60
|
+
height: 12px;
|
|
61
|
+
width: 12px;
|
|
62
|
+
margin-right: 4px;
|
|
63
|
+
vertical-align: top;
|
|
64
|
+
margin-top: 3px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.storybook-page .tip-wrapper svg path {
|
|
68
|
+
fill: #1ea7fd;
|
|
69
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
interface ButtonProps {
|
|
2
|
+
/**
|
|
3
|
+
* Is this the principal call to action on the page?
|
|
4
|
+
*/
|
|
5
|
+
primary?: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* What background color to use
|
|
8
|
+
*/
|
|
9
|
+
backgroundColor?: string;
|
|
10
|
+
/**
|
|
11
|
+
* How large should the button be?
|
|
12
|
+
*/
|
|
13
|
+
size?: 'small' | 'medium' | 'large';
|
|
14
|
+
/**
|
|
15
|
+
* Button contents
|
|
16
|
+
*/
|
|
17
|
+
label: React.ReactElement | string;
|
|
18
|
+
/**
|
|
19
|
+
* Unique id for component
|
|
20
|
+
*/
|
|
21
|
+
id?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Optional click handler
|
|
24
|
+
*/
|
|
25
|
+
onClick?: () => void;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Primary UI component for user interaction
|
|
29
|
+
*/
|
|
30
|
+
declare const Button: ({ primary, size, backgroundColor, label, id, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export default Button;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type User = {
|
|
2
|
+
name: string;
|
|
3
|
+
};
|
|
4
|
+
interface HeaderProps {
|
|
5
|
+
user?: User;
|
|
6
|
+
onLogin: () => void;
|
|
7
|
+
onLogout: () => void;
|
|
8
|
+
onCreateAccount: () => void;
|
|
9
|
+
}
|
|
10
|
+
declare const Header: ({ user, onLogin, onLogout, onCreateAccount }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default Header;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const px = "phillips";
|
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phillips/seldon",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -10,9 +10,7 @@
|
|
|
10
10
|
}
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
|
-
"dist"
|
|
14
|
-
"dist/**/*",
|
|
15
|
-
"README.md"
|
|
13
|
+
"dist/**"
|
|
16
14
|
],
|
|
17
15
|
"scripts": {
|
|
18
16
|
"dev": "vite",
|
|
@@ -73,13 +71,26 @@
|
|
|
73
71
|
"@semantic-release/commit-analyzer",
|
|
74
72
|
"@semantic-release/release-notes-generator",
|
|
75
73
|
"@semantic-release/npm",
|
|
74
|
+
[
|
|
75
|
+
"@semantic-release/github",
|
|
76
|
+
{
|
|
77
|
+
"assets": [
|
|
78
|
+
"./dist/**",
|
|
79
|
+
"package.json",
|
|
80
|
+
"package-lock.json",
|
|
81
|
+
"README.md",
|
|
82
|
+
"CHANGELOG.md"
|
|
83
|
+
]
|
|
84
|
+
}
|
|
85
|
+
],
|
|
76
86
|
[
|
|
77
87
|
"@semantic-release/git",
|
|
78
88
|
{
|
|
79
89
|
"assets": [
|
|
80
90
|
"package.json",
|
|
81
|
-
"
|
|
82
|
-
"README.md"
|
|
91
|
+
"package-lock.json",
|
|
92
|
+
"README.md",
|
|
93
|
+
"CHANGELOG.md"
|
|
83
94
|
],
|
|
84
95
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
85
96
|
}
|