The change updates the sha256 hash of the yarn package manager to sha512 in the package.json file. This alteration ensures the use of the correct hash for the yarn package manager and improves the reliability of the package dependencies.
22 lines
662 B
JSON
22 lines
662 B
JSON
{
|
|
"name": "ui",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/p-sw/ui",
|
|
"author": "p-sw <shinwoo.park@psw.kr>",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"packages/*",
|
|
"components"
|
|
],
|
|
"scripts": {
|
|
"react": "yarn workspace react",
|
|
"cli": "yarn workspace @psw-ui/cli",
|
|
"react:build": "yarn workspace react build",
|
|
"react:dev": "yarn workspace react dev",
|
|
"cli:build": "yarn workspace @psw-ui/cli build"
|
|
},
|
|
"private": true,
|
|
"packageManager": "yarn@4.2.2+sha512.c44e283c54e02de9d1da8687025b030078c1b9648d2895a65aab8e64225bfb7becba87e1809fc0b4b6778bbd47a1e2ab6ac647de4c5e383a53a7c17db6c3ff4b"
|
|
}
|