Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GGCE
GGCE Web
Commits
f9f28cf7
Commit
f9f28cf7
authored
Apr 01, 2020
by
Viacheslav Pavlov
Committed by
Matija Obreza
Apr 08, 2020
Browse files
Add module: counter
- add initial module code - clean code
parent
77e1a021
Changes
12
Hide whitespace changes
Inline
Side-by-side
package.json
View file @
f9f28cf7
...
...
@@ -19,6 +19,7 @@
"workspaces"
:
[
"packages/i18n"
,
"packages/client"
,
"packages/counter"
,
"packages/ui-express"
],
"devDependencies"
:
{
...
...
packages/counter/.babelrc
0 → 100644
View file @
f9f28cf7
{
"presets": [
[
"env",
{
"modules": false,
"targets": {
"browsers": ["last 2 versions", "safari >= 7"]
}
}
],
"react"
],
"compact": false,
"retainLines": true,
"minified": false,
"inputSourceMap": false,
"sourceMaps": false,
"plugins": [
"transform-object-rest-spread",
"babel-plugin-syntax-dynamic-import",
]
}
packages/counter/assets/html/index.html
0 → 100644
View file @
f9f28cf7
<!DOCTYPE html>
<html>
<head>
<title>
Genesys PGR
</title>
<base
href=
"/"
/>
<meta
charset=
"UTF-8"
/>
<meta
name=
"viewport"
content=
"width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"
/>
<meta
name=
"author"
content=
"Genesys Team, helpdesk@genesys-pgr.org"
/>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div
id=
"the-app"
></div>
</body>
</html>
packages/counter/assets/img/mock_img.svg
0 → 100644
View file @
f9f28cf7
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version=
"1.1"
id=
"Layer_1"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
x=
"0px"
y=
"0px"
viewBox=
"0 0 24 24"
enable-background=
"new 0 0 24 24"
xml:space=
"preserve"
>
<circle
fill=
"#2B2924"
cx=
"12"
cy=
"12"
r=
"12"
/>
<path
fill=
"#FFFFFF"
d=
"M17,7H7C6.3,7,5.8,7.6,5.8,8.3l0,7.5C5.8,16.4,6.3,17,7,17h10c0.7,0,1.2-0.6,1.2-1.2V8.3
C18.2,7.6,17.7,7,17,7z M17,15.7H7V9.5l5,3.1l5-3.1V15.7z M12,11.4L7,8.3h10L12,11.4z"
/>
</svg>
packages/counter/config/webpack-base.config.js
0 → 100644
View file @
f9f28cf7
const
path
=
require
(
'
path
'
);
const
webpack
=
require
(
'
webpack
'
);
const
HtmlWebpackPlugin
=
require
(
'
html-webpack-plugin
'
);
const
ScriptExtHtmlWebpackPlugin
=
require
(
'
script-ext-html-webpack-plugin
'
);
const
HtmlWebpackExcludeAssetsPlugin
=
require
(
'
html-webpack-exclude-assets-plugin
'
);
const
MiniCssExtractPlugin
=
require
(
'
mini-css-extract-plugin
'
);
const
WebpackChunkHash
=
require
(
'
webpack-chunk-hash
'
);
const
ManifestPlugin
=
require
(
'
webpack-manifest-plugin
'
);
const
CopyWebpackPlugin
=
require
(
'
copy-webpack-plugin
'
);
const
GitRevisionPlugin
=
require
(
'
git-revision-webpack-plugin
'
);
const
gitRevisionPlugin
=
new
GitRevisionPlugin
();
const
ReactLoadable
=
require
(
'
react-loadable/webpack
'
);
const
fs
=
require
(
'
fs
'
);
const
HOST
=
process
.
env
.
HOST
||
'
localhost
'
;
const
PORT
=
process
.
env
.
PORT
||
3000
;
module
.
exports
=
{
stats
:
{
colors
:
true
},
devServer
:
{
hot
:
true
,
inline
:
true
,
contentBase
:
path
.
join
(
__dirname
,
'
../
'
),
compress
:
true
,
port
:
PORT
,
host
:
HOST
,
overlay
:
{
warnings
:
true
,
errors
:
true
},
clientLogLevel
:
'
warning
'
,
historyApiFallback
:
{
disableDotRule
:
true
},
},
entry
:
{
gringlobal
:
[
'
babel-polyfill
'
,
'
./demo/App.tsx
'
],
},
output
:
{
filename
:
'
[name].[hash].js
'
,
chunkFilename
:
'
[name].[hash].js
'
,
path
:
path
.
join
(
process
.
cwd
(),
'
target/app/assets
'
),
publicPath
:
''
},
resolve
:
{
extensions
:
[
'
.ts
'
,
'
.tsx
'
,
'
.js
'
,
'
.jsx
'
],
modules
:
[
path
.
resolve
(
'
./src
'
),
path
.
resolve
(
'
./server
'
),
'
node_modules
'
],
alias
:
{
'
@gringlobal/counter
'
:
path
.
resolve
(
__dirname
,
'
../src
'
),
'
@gringlobal/i18n
'
:
path
.
resolve
(
__dirname
,
'
../../i18n/src
'
),
'
server
'
:
path
.
resolve
(
__dirname
,
'
../server
'
),
}
},
module
:
{
rules
:
[
{
test
:
/
\.
tsx
?
$/
,
enforce
:
'
pre
'
,
loader
:
'
eslint-loader
'
,
exclude
:
/node_modules/
,
},
{
test
:
/
\.
tsx
?
$/
,
use
:
[
{
loader
:
'
awesome-typescript-loader
'
,
},
],
},
]
},
plugins
:
[
/* new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: Infinity
}),*/
// MD5 chunkhash
new
WebpackChunkHash
(),
// We use the generated manifest.js to look for current server.[hash].js and vendor.[chunkhash].js
new
ManifestPlugin
({
basePath
:
'
/html/
'
}),
new
HtmlWebpackPlugin
({
title
:
'
Counter module
'
,
// The title to use for the generated HTML document
filename
:
'
index.html
'
,
// The file to write the HTML to
// minify: {...}, // Pass a html-minifier options object to minify the output
xhtml
:
true
,
excludeAssets
:
[
/server
(\.
.+
)
*
\.
js/
],
template
:
'
./assets/html/index.html
'
,
// chunksSortMode: sortedChunks(['vendor', 'common', 'gringlobal']),
// chunks: ['vendor', 'common', 'gringlobal'],
favicon
:
'
favicon.ico
'
,
}),
// Defer/Async scripts
new
ScriptExtHtmlWebpackPlugin
({
defaultAttribute
:
'
async
'
,
// async: [ 'gringlobal' ],
}),
// Keep CSS separate
new
MiniCssExtractPlugin
({
filename
:
'
[name].[hash].css
'
,
chunkFilename
:
'
[name].[hash].css
'
}),
new
HtmlWebpackExcludeAssetsPlugin
(),
new
CopyWebpackPlugin
([
{
from
:
'
assets/img
'
,
to
:
'
images
'
},
]),
],
optimization
:
{
splitChunks
:
{
chunks
:
'
all
'
,
cacheGroups
:
{
vendor
:
{
test
:
/
[\\/]
node_modules
[\\/]
/
,
name
:
'
vendors
'
,
chunks
:
'
all
'
}
},
},
}
};
packages/counter/config/webpack-development.config.js
0 → 100644
View file @
f9f28cf7
const
webpack
=
require
(
'
webpack
'
);
const
webpackMerge
=
require
(
'
webpack-merge
'
);
const
commonConfig
=
require
(
'
./webpack-base.config.js
'
);
module
.
exports
=
webpackMerge
.
smart
(
commonConfig
,
{
mode
:
'
development
'
,
devtool
:
'
source-map
'
,
entry
:
{},
plugins
:
[
new
webpack
.
LoaderOptionsPlugin
({
minimize
:
false
,
debug
:
true
,
options
:
{
tslint
:
{
failOnHint
:
false
}
}
}),
// new webpack.DefinePlugin({
// 'process.env': {
// API_URL: JSON.stringify(API_URL),
// CLIENT_ID: JSON.stringify(CLIENT_ID),
// CLIENT_SECRET: JSON.stringify(CLIENT_SECRET),
// GOOGLE_CLIENT_ID: JSON.stringify(GOOGLE_CLIENT_ID),
// PROJECT_VERSION: JSON.stringify(gitRevisionPlugin.version()),
// PROJECT_COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash()),
// }
// }),
// hot module replacement for webpack-dev-server
new
webpack
.
HotModuleReplacementPlugin
()
],
});
packages/counter/demo/App.tsx
0 → 100644
View file @
f9f28cf7
import
*
as
React
from
'
react
'
;
import
*
as
ReactDOM
from
'
react-dom
'
;
import
{
count
}
from
'
@gringlobal/counter/counter
'
;
class
App
extends
React
.
Component
<
any
>
{
public
state
=
{
current
:
0
,
};
public
render
():
React
.
ReactNode
{
return
(
<
div
>
<
img
src
=
"images/mock_img.svg"
alt
=
"mockImage"
width
=
"100px"
/>
<
div
>
current:
{
this
.
state
.
current
}
</
div
>
<
button
onClick
=
{
()
=>
this
.
setState
({
current
:
count
(
this
.
state
.
current
)
})
}
>
Increment
</
button
>
</
div
>
);
}
}
ReactDOM
.
render
(
<
App
/>,
document
.
getElementById
(
'
the-app
'
),
)
export
default
App
;
packages/counter/favicon.ico
0 → 100644
View file @
f9f28cf7
361 KB
packages/counter/package.json
0 → 100644
View file @
f9f28cf7
{
"name"
:
"@gringlobal/counter"
,
"version"
:
"0.0.1"
,
"license"
:
"Apache-2.0"
,
"scripts"
:
{
"clean"
:
"rimraf lib"
,
"build"
:
"yarn run clean & tsc"
,
"start:dev"
:
"cross-env NODE_OPTIONS=--max_old_space_size=8192 webpack-dev-server --config config/webpack-development.config.js"
},
"dependencies"
:
{
"react"
:
"^16.12.0"
,
"react-dom"
:
"^16.12.0"
,
"react-i18next"
:
"^11.3.1"
,
"react-loadable"
:
"^5.5.0"
,
"react-redux"
:
"^7.1.3"
,
"react-router"
:
"^5.1.2"
,
"react-router-dom"
:
"^5.1.2"
},
"devDependencies"
:
{
"@types/node"
:
"13.5.3"
,
"@types/react"
:
"^16.9.0"
,
"@types/react-router"
:
"^5.1.0"
,
"@types/react-router-dom"
:
"^5.1.0"
,
"@types/webpack-env"
:
"^1.15.1"
,
"awesome-typescript-loader"
:
"^5.2.1"
,
"babel-core"
:
"^6.26.3"
,
"babel-eslint"
:
"^10.0.3"
,
"babel-plugin-module-resolver"
:
"^4.0.0"
,
"babel-plugin-react-transform"
:
"^3.0.0"
,
"babel-plugin-syntax-dynamic-import"
:
"^6.18.0"
,
"babel-plugin-transform-object-rest-spread"
:
"^6.26.0"
,
"babel-plugin-transform-runtime"
:
"^6.23.0"
,
"babel-polyfill"
:
"^6.26.0"
,
"babel-preset-env"
:
"^1.7.0"
,
"babel-preset-react"
:
"^6.24.1"
,
"babel-preset-typescript"
:
"^7.0.0-alpha.19"
,
"copy-webpack-plugin"
:
"^5.1.1"
,
"cross-env"
:
"^7.0.0"
,
"eslint"
:
"^6.8.0"
,
"eslint-config-airbnb"
:
"^18.0.1"
,
"eslint-config-prettier"
:
"^6.10.0"
,
"eslint-loader"
:
"^3.0.3"
,
"eslint-plugin-import"
:
"^2.20.0"
,
"eslint-plugin-jsx-a11y"
:
"^6.2.3"
,
"eslint-plugin-prefer-arrow"
:
"^1.1.7"
,
"eslint-plugin-react"
:
"^7.18.0"
,
"html-webpack-exclude-assets-plugin"
:
"0.0.7"
,
"html-webpack-plugin"
:
"^3.2.0"
,
"lerna"
:
"^3.20.2"
,
"react-hot-loader"
:
"^4.12.18"
,
"rimraf"
:
"^3.0.1"
,
"ts-node"
:
"^8.6.2"
,
"tslint"
:
"^6.0.0"
,
"tslint-loader"
:
"^3.5.4"
,
"tslint-react"
:
"^4.2.0"
,
"typescript"
:
"^3.7.5"
,
"webpack"
:
"^4.41.5"
,
"webpack-chunk-hash"
:
"^0.6.0"
,
"webpack-cli"
:
"^3.3.10"
,
"webpack-dev-server"
:
"^3.10.1"
,
"webpack-hot-middleware"
:
"^2.25.0"
,
"webpack-manifest-plugin"
:
"^2.2.0"
,
"webpack-merge"
:
"^4.2.2"
}
}
packages/counter/src/counter.ts
0 → 100644
View file @
f9f28cf7
export
const
count
=
(
current
)
=>
{
return
current
+
1
;
}
packages/counter/tsconfig.json
0 → 100644
View file @
f9f28cf7
{
"extends"
:
"../../tsconfig.json"
,
"compilerOptions"
:
{
"baseUrl"
:
"."
,
"paths"
:
{
"@gringlobal/counter/*"
:
[
"./src/*"
],
"*"
:
[
"*"
,
"node_modules"
]
},
"outDir"
:
"./lib"
,
"module"
:
"esnext"
,
"target"
:
"esnext"
,
"jsx"
:
"react"
,
"moduleResolution"
:
"node"
},
"include"
:
[
"./demo/*"
,
"./src/*"
],
"exclude"
:
[
"node_modules"
,
"lib"
,
"typings/main"
,
"typings/main.d.ts"
],
"awesomeTypescriptLoaderOptions"
:
{
"useCache"
:
true
,
"cacheDirectory"
:
".awesome-typescript-loader-cache"
,
"useBabel"
:
true
}
}
yarn.lock
View file @
f9f28cf7
...
...
@@ -2479,6 +2479,31 @@ babel-code-frame@^6.26.0:
esutils "^2.0.2"
js-tokens "^3.0.2"
babel-core@^6.26.0, babel-core@^6.26.3:
version "6.26.3"
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==
dependencies:
babel-code-frame "^6.26.0"
babel-generator "^6.26.0"
babel-helpers "^6.24.1"
babel-messages "^6.23.0"
babel-register "^6.26.0"
babel-runtime "^6.26.0"
babel-template "^6.26.0"
babel-traverse "^6.26.0"
babel-types "^6.26.0"
babylon "^6.18.0"
convert-source-map "^1.5.1"
debug "^2.6.9"
json5 "^0.5.1"
lodash "^4.17.4"
minimatch "^3.0.4"
path-is-absolute "^1.0.1"
private "^0.1.8"
slash "^1.0.0"
source-map "^0.5.7"
babel-eslint@^10.0.3:
version "10.0.3"
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.3.tgz#81a2c669be0f205e19462fed2482d33e4687a88a"
...
...
@@ -2491,6 +2516,20 @@ babel-eslint@^10.0.3:
eslint-visitor-keys "^1.0.0"
resolve "^1.12.0"
babel-generator@^6.26.0:
version "6.26.1"
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==
dependencies:
babel-messages "^6.23.0"
babel-runtime "^6.26.0"
babel-types "^6.26.0"
detect-indent "^4.0.0"
jsesc "^1.3.0"
lodash "^4.17.4"
source-map "^0.5.7"
trim-right "^1.0.1"
babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
version "6.24.1"
resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
...
...
@@ -2605,6 +2644,14 @@ babel-helper-replace-supers@^6.24.1:
babel-traverse "^6.24.1"
babel-types "^6.24.1"
babel-helpers@^6.24.1:
version "6.24.1"
resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=
dependencies:
babel-runtime "^6.22.0"
babel-template "^6.24.1"
babel-jest@^25.1.0:
version "25.1.0"
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.1.0.tgz#206093ac380a4b78c4404a05b3277391278f80fb"
...
...
@@ -3079,6 +3126,19 @@ babel-preset-typescript@^7.0.0-alpha.19:
babel-plugin-syntax-object-rest-spread "7.0.0-alpha.19"
babel-plugin-transform-typescript "7.0.0-alpha.19"
babel-register@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
integrity sha1-btAhFz4vy0htestFxgCahW9kcHE=
dependencies:
babel-core "^6.26.0"
babel-runtime "^6.26.0"
core-js "^2.5.0"
home-or-tmp "^2.0.0"
lodash "^4.17.4"
mkdirp "^0.5.1"
source-map-support "^0.4.15"
babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
...
...
@@ -4220,7 +4280,7 @@ conventional-recommended-bump@^5.0.0:
meow "^4.0.0"
q "^1.5.1"
convert-source-map@1.7.0, convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
convert-source-map@1.7.0, convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0,
convert-source-map@^1.5.1,
convert-source-map@^1.6.0, convert-source-map@^1.7.0:
version "1.7.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
...
...
@@ -4892,6 +4952,13 @@ detect-file@^1.0.0:
resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7"
integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=
detect-indent@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg=
dependencies:
repeating "^2.0.0"
detect-indent@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
...
...
@@ -6885,6 +6952,14 @@ hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.2.0, hoist-non-react-
dependencies:
react-is "^16.7.0"
home-or-tmp@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg=
dependencies:
os-homedir "^1.0.0"
os-tmpdir "^1.0.1"
homedir-polyfill@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
...
...
@@ -8424,6 +8499,11 @@ jsdom@^16.1.0:
ws "^7.2.1"
xml-name-validator "^3.0.0"
jsesc@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s=
jsesc@^2.5.1:
version "2.5.2"
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
...
...
@@ -10288,7 +10368,7 @@ os-name@^3.1.0:
macos-release "^2.2.0"
windows-release "^3.1.0"
os-tmpdir@^1.0.0, os-tmpdir@~1.0.2:
os-tmpdir@^1.0.0,
os-tmpdir@^1.0.1,
os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
...
...
@@ -10580,7 +10660,7 @@ path-exists@^4.0.0:
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
path-is-absolute@^1.0.0:
path-is-absolute@^1.0.0
, path-is-absolute@^1.0.1
:
version "1.0.1"
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
...
...
@@ -11610,7 +11690,7 @@ pretty-format@^25.1.0:
ansi-styles "^4.0.0"
react-is "^16.12.0"
private@^0.1.6:
private@^0.1.6
, private@^0.1.8
:
version "0.1.8"
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
...
...
@@ -13189,6 +13269,13 @@ source-map-resolve@^0.5.0, source-map-resolve@^0.5.2:
source-map-url "^0.4.0"
urix "^0.1.0"
source-map-support@^0.4.15:
version "0.4.18"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==
dependencies:
source-map "^0.5.6"
source-map-support@^0.5.3, source-map-support@^0.5.6, source-map-support@~0.5.12:
version "0.5.16"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042"
...
...
@@ -13214,7 +13301,7 @@ source-map@^0.4.2:
dependencies:
amdefine ">=0.0.4"
source-map@^0.5.0, source-map@^0.5.6:
source-map@^0.5.0, source-map@^0.5.6
, source-map@^0.5.7
:
version "0.5.7"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
...
...
@@ -14112,6 +14199,11 @@ trim-off-newlines@^1.0.0:
resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM=
trim-right@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
trim-trailing-lines@^1.0.0:
version "1.1.3"
resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.3.tgz#7f0739881ff76657b7776e10874128004b625a94"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment