-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Add the package release shell (#767)
* Chore: Add the package release shell Signed-off-by: barnettZQG <[email protected]> * Fix: Update the package.json Signed-off-by: barnettZQG <[email protected]> * Fix: Install @parcel/watcher fails on ARM Signed-off-by: barnettZQG <[email protected]> --------- Signed-off-by: barnettZQG <[email protected]>
- Loading branch information
1 parent
dabefee
commit 3cae9e1
Showing
12 changed files
with
3,151 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,5 @@ dist | |
tsconfig.tsbuildinfo | ||
|
||
e2e-plugins | ||
|
||
npm-artifacts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "9.4.0-pre" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.title-wrapper { | ||
display: flex; | ||
justify-content: space-between; | ||
width: 100%; | ||
padding: 8px 0; | ||
line-height: 36px; | ||
} | ||
.title-wrapper .title { | ||
font-weight: 500; | ||
font-size: 18px; | ||
} | ||
.title-wrapper .subTitle { | ||
margin-left: 15px; | ||
} | ||
@media (max-width: 719px) and (min-width: 480px) { | ||
.title-wrapper .subTitle { | ||
display: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
echo $'\nBuilding packages' | ||
yarn build-packages | ||
|
||
echo $'\nPacking packages' | ||
yarn packages:pack | ||
|
||
echo $'\nPublishing packages' | ||
for file in ./npm-artifacts/*.tgz; do npm publish "$file"; done | ||
|
Oops, something went wrong.