File tree 9 files changed +29
-15
lines changed
9 files changed +29
-15
lines changed Original file line number Diff line number Diff line change 2
2
"packages" : [
3
3
" packages/*"
4
4
],
5
- "version" : " 2.1.3 " ,
5
+ "version" : " 2.1.4 " ,
6
6
"npmClient" : " yarn" ,
7
7
"useWorkspaces" : true ,
8
8
"command" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @visualdl/cli" ,
3
- "version" : " 2.1.3 " ,
3
+ "version" : " 2.1.4 " ,
4
4
"description" : " A platform to visualize the deep learning process and result." ,
5
5
"keywords" : [
6
6
" visualdl" ,
34
34
" dist"
35
35
],
36
36
"dependencies" : {
37
- "@visualdl/server" : " 2.1.3 " ,
37
+ "@visualdl/server" : " 2.1.4 " ,
38
38
"open" : " 7.3.0" ,
39
39
"ora" : " 5.1.0" ,
40
40
"pm2" : " 4.5.1" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @visualdl/core" ,
3
- "version" : " 2.1.3 " ,
3
+ "version" : " 2.1.4 " ,
4
4
"description" : " A platform to visualize the deep learning process and result." ,
5
5
"keywords" : [
6
6
" visualdl" ,
35
35
],
36
36
"dependencies" : {
37
37
"@tippyjs/react" : " 4.2.0" ,
38
- "@visualdl/netron" : " 2.1.3 " ,
39
- "@visualdl/wasm" : " 2.1.3 " ,
38
+ "@visualdl/netron" : " 2.1.4 " ,
39
+ "@visualdl/wasm" : " 2.1.4 " ,
40
40
"bignumber.js" : " 9.0.1" ,
41
41
"d3" : " 6.3.1" ,
42
42
"d3-format" : " 2.0.0" ,
105
105
"@types/react-router-dom" : " 5.1.6" ,
106
106
"@types/snowpack-env" : " 2.3.3" ,
107
107
"@types/styled-components" : " 5.1.7" ,
108
- "@visualdl/mock" : " 2.1.3 " ,
108
+ "@visualdl/mock" : " 2.1.4 " ,
109
109
"babel-plugin-styled-components" : " 1.12.0" ,
110
110
"dotenv" : " 8.2.0" ,
111
111
"enhanced-resolve" : " 5.4.1" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @visualdl/demo" ,
3
- "version" : " 2.1.3 " ,
3
+ "version" : " 2.1.4 " ,
4
4
"description" : " A platform to visualize the deep learning process and result." ,
5
5
"keywords" : [
6
6
" visualdl" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @visualdl/mock" ,
3
- "version" : " 2.1.3 " ,
3
+ "version" : " 2.1.4 " ,
4
4
"description" : " A platform to visualize the deep learning process and result." ,
5
5
"keywords" : [
6
6
" visualdl" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @visualdl/netron" ,
3
- "version" : " 2.1.3 " ,
3
+ "version" : " 2.1.4 " ,
4
4
"description" : " A platform to visualize the deep learning process and result." ,
5
5
"keywords" : [
6
6
" visualdl" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @visualdl/server" ,
3
- "version" : " 2.1.3 " ,
3
+ "version" : " 2.1.4 " ,
4
4
"description" : " A platform to visualize the deep learning process and result." ,
5
5
"keywords" : [
6
6
" visualdl" ,
37
37
" ecosystem.config.d.ts"
38
38
],
39
39
"dependencies" : {
40
- "@visualdl/core" : " 2.1.3 " ,
40
+ "@visualdl/core" : " 2.1.4 " ,
41
41
"dotenv" : " 8.2.0" ,
42
42
"enhanced-resolve" : " 5.4.1" ,
43
43
"express" : " 4.17.1" ,
48
48
"@types/enhanced-resolve" : " 3.0.6" ,
49
49
"@types/express" : " 4.17.9" ,
50
50
"@types/node" : " 14.14.16" ,
51
- "@visualdl/mock" : " 2.1.3 " ,
51
+ "@visualdl/mock" : " 2.1.4 " ,
52
52
"cross-env" : " 7.0.3" ,
53
53
"nodemon" : " 2.0.6" ,
54
54
"ts-node" : " 9.1.1" ,
55
55
"typescript" : " 4.0.5"
56
56
},
57
57
"optionalDependencies" : {
58
- "@visualdl/demo" : " 2.1.3 "
58
+ "@visualdl/demo" : " 2.1.4 "
59
59
},
60
60
"engines" : {
61
61
"node" : " >=12" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @visualdl/wasm" ,
3
- "version" : " 2.1.3 " ,
3
+ "version" : " 2.1.4 " ,
4
4
"title" : " VisualDL" ,
5
5
"description" : " A platform to visualize the deep learning process and result." ,
6
6
"keywords" : [
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+
5
+ SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
6
+
7
+ PACKAGES=" ${SCRIPT_DIR} /../packages"
8
+
9
+ for dirname in ` ls ${PACKAGES} ` ; do
10
+ package=" ${PACKAGES} /${dirname} "
11
+ if [ -d $package ]; then
12
+ (cd $package && npm publish)
13
+ fi
14
+ done
You can’t perform that action at this time.
0 commit comments