1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

Merge branch 'master' of github.com:Budibase/budibase into feature/routify

This commit is contained in:
kevmodrome 2020-04-06 07:47:35 +02:00
commit 2c37f524f9
54 changed files with 193 additions and 93 deletions

View file

@ -1,5 +1,5 @@
{
"version": "0.0.29",
"version": "0.0.31",
"npmClient": "yarn",
"packages": [
"packages/*"

View file

@ -17,6 +17,7 @@
"build": "lerna run build",
"initialise": "lerna run initialise",
"publishdev": "lerna run publishdev",
"publishnpm":"yarn build && lerna publish",
"clean": "lerna clean",
"dev": "lerna run --parallel --stream dev:builder",
"test": "lerna run test",

View file

@ -12,7 +12,7 @@
"publishdev": "yarn build && node ./scripts/publishDev.js"
},
"devDependencies": {
"@budibase/client": "^0.0.29",
"@budibase/client": "^0.0.31",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
@ -30,7 +30,7 @@
"keywords": [
"svelte"
],
"version": "0.0.29",
"version": "0.0.31",
"license": "MIT",
"gitHead": "72a77a035eb7c1443b079bf93c29b3e5fe02094e"
}

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/builder",
"version": "0.0.29",
"version": "0.0.31",
"license": "AGPL-3.0",
"private": true,
"scripts": {
@ -38,7 +38,7 @@
]
},
"dependencies": {
"@budibase/client": "^0.0.29",
"@budibase/client": "^0.0.31",
"@nx-js/compiler-util": "^2.0.0",
"codemirror": "^5.51.0",
"date-fns": "^1.29.0",
@ -80,4 +80,4 @@
"svelte": "^3.0.0"
},
"gitHead": "115189f72a850bfb52b65ec61d932531bf327072"
}
}

View file

@ -37,7 +37,7 @@
.content {
flex: 1 1 auto;
margin: 40px 40px;
margin: 20px 40px;
}
.nav {

View file

@ -37,7 +37,7 @@
.budibase__label--medium {
font-weight: 500;
font-size: 12px;
font-size: 13px;
opacity: 0.6;
text-transform: uppercase;
}
@ -64,7 +64,7 @@
display: flex;
align-items: baseline;
font-weight: 500;
font-size: 12px;
font-size: 13px;
}
.budibase__nav-item.selected {

View file

@ -46,7 +46,8 @@
.button:hover {
cursor: pointer;
font-weight: 700;
font-weight: 600;
filter:saturate(90%);
}
.button:disabled {

View file

@ -63,7 +63,7 @@
}
:global(.refresh-page-button) {
font-size: 12px;
font-size: 13px;
font-weight: 600;
border-radius: 5px;
border: none;

View file

@ -0,0 +1,10 @@
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="100%"
height="100%">
<path fill="none" d="M0 0h24v24H0z"/>
<path
fill="rgba(0,3,51,1)"
d="M12 14l-4-4h8z" />
</svg>

After

Width:  |  Height:  |  Size: 228 B

View file

@ -4,6 +4,7 @@ export { default as TerminalIcon } from "./Terminal.svelte"
export { default as InputIcon } from "./Input.svelte"
export { default as ImageIcon } from "./Image.svelte"
export { default as ArrowDownIcon } from "./ArrowDown.svelte"
export { default as DownArrowIcon } from "./DownArrow.svelte"
export { default as CircleIndicator } from "./CircleIndicator.svelte"
export { default as PencilIcon } from "./Pencil.svelte"
export { default as EventsIcon } from "./Events.svelte"

View file

@ -30,7 +30,7 @@
input {
width: 83px;
font-size: 12px;
font-size: 13px;
font-weight: 700;
color: #163057;
opacity: 0.7;

View file

@ -19,22 +19,22 @@
<style>
.select-container {
font-size: 0.9rem;
color: var(--secondary50);
font-size: 14px;
color: var(--secondary60);
font-weight: bold;
position: relative;
max-width: 300px;
min-width: 200px;
max-width: 400px;
min-width: 275px;
}
.adjusted {
padding-left: 2.5em;
padding-left: 30px;
}
i {
position: absolute;
left: 8px;
top: 8px;
left: 10px;
top: 10px;
}
select {
@ -42,8 +42,9 @@
display: block;
font-family: sans-serif;
font-weight: 400;
font-size: 14px;
color: #000333;
padding: 0 2.6em 0em 1.4em;
padding: 0 40px 0px 20px;
width: 100%;
max-width: 100%;
box-sizing: border-box;
@ -51,7 +52,7 @@
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background: var(--lightslate);
background: var(--white);
}
.arrow {
@ -62,6 +63,6 @@
width: 30px;
height: 30px;
pointer-events: none;
color: var(--primary100);
color: var(--secondary100);
}
</style>

View file

@ -99,9 +99,9 @@
<section>
<div class="table-controls">
<h4 class="budibase__title--3">
<h2 class="title">
{takeRight(2, $backendUiStore.breadcrumbs).join(' / ')}
</h4>
</h2>
<Select icon="ri-eye-line" bind:value={$backendUiStore.selectedView}>
{#each views as view}
<option value={view}>{view.name}</option>
@ -166,6 +166,18 @@
</section>
<style>
.title {
font-size: 24px;
font-weight: 600;
text-rendering: optimizeLegibility;
text-transform: capitalize;
}
.select {
background: white;
}
table {
border: 1px solid #ccc;
background: #fff;
@ -174,19 +186,24 @@
}
thead {
background: var(--background-button);
background: #f9f9f9;
border: 1px solid #ccc;
}
thead th {
color: var(--button-text);
text-transform: capitalize;
font-weight: 500;
font-size: 14px;
text-rendering: optimizeLegibility;
letter-spacing: 1px;
}
tbody tr {
border-bottom: 1px solid #ccc;
transition: 0.3s background-color;
color: var(--darkslate);
color: var(--secondary100);
font-size: 14px;
}
tbody tr:hover {
@ -196,7 +213,8 @@
.table-controls {
display: flex;
justify-content: space-between;
align-items: center;
align-items: baseline;
margin-top: 10px;
}
.ri-more-line:hover,

View file

@ -18,6 +18,7 @@
export let onClosed
let errors = []
let selectedModel
const childModelsForModel = compose(flatten, map("children"), get("children"))
@ -29,7 +30,6 @@
? childModelsForModel($store.hierarchy)
: $store.hierarchy.children
let selectedModel
$: {
if (record) {
selectedModel = getExactNodeForKey($store.hierarchy)(record.key)
@ -48,7 +48,6 @@
$: editingRecord =
record ||
editingRecord ||
getNewRecord(
selectedModel,
getCurrentCollectionKey($backendUiStore.selectedRecord)

View file

@ -53,7 +53,7 @@
flex-direction: column;
max-height: 100%;
height: 100%;
background-color: var(--white);
background: var(--white);
}
.nav-group-header {
@ -66,7 +66,7 @@
.hierarchy-title {
align-items: center;
text-transform: uppercase;
font-size: 12px;
font-size: 13px;
font-weight: bold;
opacity: 0.6;
letter-spacing: 1px;

View file

@ -60,7 +60,7 @@
<style>
.root {
font-size: 12px;
font-size: 13px;
color: var(--secondary100);
position: relative;
padding-left: 20px;
@ -88,7 +88,7 @@
padding: 0;
border: none;
font-family: Roboto;
font-size: 12px;
font-size: 13px;
outline: none;
cursor: pointer;
background: rgba(0, 0, 0, 0);

View file

@ -52,7 +52,7 @@
<style>
.hierarchy-item {
font-size: 12px;
font-size: 13px;
font-weight: 400;
margin-bottom: 10px;
}

View file

@ -68,7 +68,7 @@
.hierarchy-title {
align-items: center;
text-transform: uppercase;
font-size: 12px;
font-size: 13px;
font-weight: bold;
opacity: 0.6;
letter-spacing: 1px;

View file

@ -68,7 +68,7 @@
padding: 0;
border: none;
font-family: Roboto;
font-size: 0.8rem;
font-size: 13px;
outline: none;
cursor: pointer;
background: rgba(0, 0, 0, 0);

View file

@ -86,14 +86,14 @@
<style>
h3 {
text-transform: uppercase;
font-size: 12px;
font-size: 13px;
font-weight: 700;
color: #8997ab;
margin-bottom: 10px;
}
p {
font-size: 12px;
font-size: 13px;
color: #333;
margin-top: 0;
}

View file

@ -120,11 +120,11 @@
.detail-prop label {
word-wrap: break-word;
font-size: 12px;
font-size: 13px;
font-weight: 700;
color: #163057;
opacity: 0.6;
padding-top: 12px;
padding-top: 13px;
margin-bottom: 0;
}

View file

@ -258,7 +258,7 @@
.component > .name {
color: #000333;
display: inline-block;
font-size: 12px;
font-size: 13px;
opacity: 0.8;
}
@ -282,7 +282,7 @@
}
.preset-menu > span {
font-size: 12px;
font-size: 13px;
text-transform: uppercase;
margin-top: 5px;
}
@ -308,7 +308,7 @@
background: none;
border: none;
border-radius: 5px;
padding: 12px;
padding: 13px;
outline: none;
cursor: pointer;
} */

View file

@ -98,12 +98,13 @@
<style>
.root {
font-weight: 400;
color: #333;
color: #000333;
}
.title {
margin-left: 10px;
margin-top: 2px;
font-size: 13px;
}
.icon {

View file

@ -95,6 +95,7 @@
height: 35px;
align-items: center;
font-weight: 400;
font-size: 13px;
}
.item button {

View file

@ -85,6 +85,6 @@
background: none;
border: none;
border-radius: 5px;
padding: 12px;
padding: 13px;
}
</style>

View file

@ -160,7 +160,7 @@
a {
color: rgba(22, 48, 87, 0.6);
font-size: 12px;
font-size: 13px;
margin-top: 0;
}
</style>

View file

@ -88,7 +88,7 @@
<style>
h3 {
text-transform: uppercase;
font-size: 12px;
font-size: 13px;
font-weight: 700;
color: #8997ab;
margin-bottom: 10px;

View file

@ -139,7 +139,7 @@
}
span {
font-size: 12px;
font-size: 13px;
margin-bottom: 5px;
}
</style>

View file

@ -68,7 +68,7 @@
}
span {
font-size: 12px;
font-size: 13px;
margin-bottom: 5px;
}
</style>

View file

@ -131,7 +131,7 @@
<style>
h3 {
text-transform: uppercase;
font-size: 12px;
font-size: 13px;
font-weight: 700;
color: #000333;
opacity: 0.6;
@ -149,11 +149,11 @@
}
h5 {
font-size: 12px;
font-size: 13px;
font-weight: 400;
color: #000333;
opacity: 0.8;
padding-top: 12px;
padding-top: 13px;
margin-bottom: 0;
}

View file

@ -50,24 +50,23 @@
}
</script>
<div>
<div class="pagelayoutSection">
<div class="components-nav-page">Page Layout</div>
<div
class="budibase__nav-item"
class="budibase__nav-item root"
class:selected={$store.currentComponentInfo._id === _layout.component.props._id}
on:click|stopPropagation={() => store.setScreenType('page')}>
<span
class="icon"
class:rotate={$store.currentPreviewItem.name !== _layout.title}>
{#if _layout.component.props._children.length}
<ArrowDownIcon />
{/if}
<ArrowDownIcon />
</span>
<span class="icon">
<GridIcon />
</span>
<span class="title">Master Layout</span>
<span class="title">Page Layout</span>
</div>
{#if $store.currentPreviewItem.name === _layout.title && _layout.component.props._children}
@ -90,9 +89,27 @@
onOk={() => store.deleteComponent(componentToDelete)} />
<style>
.components-nav-page {
font-size: 13px;
color: #000333;
text-transform: uppercase;
margin-bottom: 10px;
padding-left: 20px;
font-weight: 600;
opacity: 0.4;
letter-spacing: 1px;
}
.pagelayoutSection {
margin: 20px 0px 20px 0px;
}
.root {
}
.title {
margin-left: 10px;
margin-top: 2px;
font-size: 13px;
}
.icon {
@ -100,7 +117,7 @@
transition: 0.2s;
width: 20px;
margin-top: 2px;
color: #333;
color: #000333;
}
.icon:nth-of-type(2) {

View file

@ -67,7 +67,7 @@
padding: 0;
border: none;
font-family: Roboto;
font-size: 0.8rem;
font-size: 13px;
outline: none;
cursor: pointer;
background: rgba(0, 0, 0, 0);

View file

@ -39,11 +39,11 @@
h5 {
word-wrap: break-word;
font-size: 12px;
font-size: 13px;
font-weight: 400;
color: #000333;
opacity: 0.8;
padding-top: 12px;
padding-top: 13px;
margin-bottom: 0;
}
</style>

View file

@ -45,7 +45,7 @@
.name {
color: rgba(22, 48, 87, 0.6);
font-size: 12px;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
margin-top: 5px;

View file

@ -1,7 +1,7 @@
<script>
import ComponentsHierarchy from "./ComponentsHierarchy.svelte"
import ComponentsHierarchyChildren from "./ComponentsHierarchyChildren.svelte"
import MasterLayout from "./MasterLayout.svelte"
import PageLayout from "./PageLayout.svelte"
import PagesList from "./PagesList.svelte"
import { store } from "builderStore"
import IconButton from "components/common/IconButton.svelte"
@ -55,6 +55,10 @@
<div class="border-line" />
<PageLayout layout={$store.pages[$store.currentPageName]} />
<div class="border-line" />
<div class="components-list-container">
<div class="nav-group-header">
<span class="components-nav-header" style="margin-top: 0;">
@ -67,7 +71,6 @@
</div>
</div>
<div class="nav-items-container">
<MasterLayout layout={$store.pages[$store.currentPageName]} />
<ComponentsHierarchy screens={$store.screens} />
</div>
</div>
@ -154,7 +157,7 @@
}
.components-nav-page {
font-size: 12px;
font-size: 13px;
color: #000333;
text-transform: uppercase;
padding-left: 20px;
@ -165,7 +168,7 @@
}
.components-nav-header {
font-size: 12px;
font-size: 13px;
color: #000333;
text-transform: uppercase;
margin-top: 20px;

View file

@ -7,6 +7,7 @@
<title>Budibase Builder</title>
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.3.0/fonts/remixicon.css" rel="stylesheet">
<link rel='icon' type='image/png' href='/_builder/favicon.png'>
<link rel='stylesheet' href='/_builder/global.css'>
<link rel='stylesheet' href='/_builder/codemirror.css'>

View file

@ -59,7 +59,7 @@
<div class="root">
<div class="node-view">
<slot />
</div>
</div>
@ -73,4 +73,5 @@
overflow-y: auto;
flex: 1 1 auto;
}
</style>

View file

@ -1,6 +1,6 @@
{
"name": "budibase",
"version": "0.0.29",
"version": "0.0.31",
"description": "Budibase CLI",
"repository": "https://github.com/Budibase/Budibase",
"homepage": "https://budibase.com",
@ -20,8 +20,8 @@
"author": "Budibase",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@budibase/datastores": "^0.0.29",
"@budibase/server": "^0.0.29",
"@budibase/datastores": "^0.0.31",
"@budibase/server": "^0.0.31",
"@inquirer/password": "^0.0.6-alpha.0",
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/client",
"version": "0.0.29",
"version": "0.0.31",
"license": "MPL-2.0",
"main": "dist/budibase-client.js",
"module": "dist/budibase-client.esm.mjs",

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/core",
"version": "0.0.29",
"version": "0.0.31",
"description": "core javascript library for budibase",
"main": "dist/budibase-core.umd.js",
"module": "dist/budibase-core.esm.js",

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/datastores",
"version": "0.0.29",
"version": "0.0.31",
"description": "implementations of all the datastores... azureblob, local etc",
"main": "index.js",
"scripts": {
@ -27,7 +27,7 @@
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@budibase/core": "^0.0.29",
"@budibase/core": "^0.0.31",
"es6-promisify": "^6.0.1",
"fs-extra": "^8.1.0",
"lodash": "^4.17.13",

View file

@ -14,7 +14,9 @@
"name": "Body1",
"description": "Sets the font properties as Roboto Body 1",
"props": {
"text": "string"
"text": "string",
"verticalMargin": "number",
"horizontalMargin": "number"
},
"tags": []
},

File diff suppressed because one or more lines are too long

View file

@ -12,8 +12,8 @@
"publishdev": "yarn build && node ./scripts/publishDev.js"
},
"devDependencies": {
"@budibase/client": "^0.0.29",
"@budibase/standard-components": "^0.0.29",
"@budibase/client": "^0.0.31",
"@budibase/standard-components": "^0.0.31",
"@material/button": "^4.0.0",
"@material/checkbox": "^4.0.0",
"@material/data-table": "4.0.0",
@ -50,7 +50,7 @@
"keywords": [
"svelte"
],
"version": "0.0.29",
"version": "0.0.31",
"license": "MIT",
"gitHead": "72a77a035eb7c1443b079bf93c29b3e5fe02094e",
"dependencies": {

View file

@ -5,9 +5,6 @@
<meta name='viewport' content='width=device-width'>
<title>Budibase-Material Design</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/build/bundle.css'>

View file

@ -65,6 +65,9 @@
{/if}
<style>
.mdc-button:not(.fullwidth) {
width: fit-content;
}
.fullwidth {
width: 100%;
}

View file

@ -1,9 +1,10 @@
export default class ClassBuilder {
constructor(block, defaultIgnoreList) {
this.block = `mdc-${block}`
this.defaultIgnoreList = defaultIgnoreList //will be ignored when building custom classes
this.defaultIgnoreList = defaultIgnoreList //will be ignored when building custom classes
}
/*
handles both blocks and elementss (BEM MD Notation)
params = {elementName: string, props: {modifiers{}, customs:{}, extras: []}}

View file

@ -34,6 +34,7 @@
props: {
_component: "testcomponents/rootComponent",
_children: [
Button,
Textfield,
Checkboxgroup,
Radiobutton,

View file

@ -35,7 +35,7 @@ export const props = {
Button: {
_component: "@budibase/materialdesign-components/Button",
_children: [],
variant: "raised",
variant: "text",
colour: "secondary",
size: "large",
href: "",
@ -64,7 +64,8 @@ export const props = {
_children: [],
label: "First",
colour: "secondary",
fullwidth: true,
icon: "alarm_on",
trailingIcon: true,
maxLength: 500,
helperText: "Add Surname",
value: "store.surname",

View file

@ -0,0 +1,2 @@
@import "https://fonts.googleapis.com/css?family=Roboto:300,400,500";
@import "https://fonts.googleapis.com/icon?family=Material+Icons";

View file

@ -1,4 +1,5 @@
import "@material/theme/mdc-theme.scss"
import "./_material-fonts.scss"
export { Button } from "./Button"
export { default as Icon } from "./Common/Icon.svelte"

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/server",
"version": "0.0.29",
"version": "0.0.31",
"description": "Budibase Web Server",
"main": "index.js",
"scripts": {
@ -16,8 +16,8 @@
"author": "Michael Shanks",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@budibase/client": "^0.0.29",
"@budibase/core": "^0.0.29",
"@budibase/client": "^0.0.31",
"@budibase/core": "^0.0.31",
"@koa/router": "^8.0.0",
"fs-extra": "^8.1.0",
"koa": "^2.7.0",

View file

@ -12,7 +12,7 @@
"publishdev": "yarn build && node ./scripts/publishDev.js"
},
"devDependencies": {
"@budibase/client": "^0.0.29",
"@budibase/client": "^0.0.31",
"@nx-js/compiler-util": "^2.0.0",
"bcryptjs": "2.4.3",
"fs-extra": "^8.1.0",
@ -32,7 +32,7 @@
"keywords": [
"svelte"
],
"version": "0.0.29",
"version": "0.0.31",
"license": "MIT",
"gitHead": "72a77a035eb7c1443b079bf93c29b3e5fe02094e"
}

View file

@ -1363,7 +1363,7 @@ caseless@~0.12.0:
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.2:
chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@ -3394,6 +3394,11 @@ mem@^4.0.0:
mimic-fn "^2.0.0"
p-is-promise "^2.0.0"
memorystream@^0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2"
integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI=
meow@^3.3.0:
version "3.7.0"
resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
@ -3773,6 +3778,21 @@ npm-registry-fetch@^4.0.0:
npm-package-arg "^6.1.0"
safe-buffer "^5.2.0"
npm-run-all@^4.1.5:
version "4.1.5"
resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba"
integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==
dependencies:
ansi-styles "^3.2.1"
chalk "^2.4.1"
cross-spawn "^6.0.5"
memorystream "^0.3.1"
minimatch "^3.0.4"
pidtree "^0.3.0"
read-pkg "^3.0.0"
shell-quote "^1.6.1"
string.prototype.padend "^3.0.0"
npm-run-path@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
@ -4174,6 +4194,11 @@ performance-now@^2.1.0:
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
pidtree@^0.3.0:
version "0.3.1"
resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a"
integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==
pify@^2.0.0, pify@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
@ -4688,6 +4713,11 @@ shebang-regex@^1.0.0:
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
shell-quote@^1.6.1:
version "1.7.2"
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
signal-exit@^3.0.0, signal-exit@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
@ -4931,6 +4961,14 @@ string-width@^4.1.0:
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.0"
string.prototype.padend@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3"
integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA==
dependencies:
define-properties "^1.1.3"
es-abstract "^1.17.0-next.1"
string.prototype.trimleft@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74"