@team-monolith/pxt-core 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -0
- package/built/target.js +3 -3
- package/built/web/main.js +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -64,6 +64,33 @@ npm install
|
|
|
64
64
|
npm run build
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
+
## Team Monolith Build & Publish
|
|
68
|
+
|
|
69
|
+
npm 패키지 빌드 및 배포 프로세스:
|
|
70
|
+
|
|
71
|
+
1. package.json의 version 필드 업데이트
|
|
72
|
+
|
|
73
|
+
2. 빌드를 위해 package.json의 name 필드를 `pxt-core`로 임시 수정
|
|
74
|
+
```json
|
|
75
|
+
"name": "pxt-core"
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
3. 빌드 실행
|
|
79
|
+
```bash
|
|
80
|
+
npm install
|
|
81
|
+
npm run build
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
4. 배포를 위해 package.json의 name 필드를 `@team-monolith/pxt-core`로 원복
|
|
85
|
+
```json
|
|
86
|
+
"name": "@team-monolith/pxt-core"
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
5. npm 배포
|
|
90
|
+
```bash
|
|
91
|
+
npm publish
|
|
92
|
+
```
|
|
93
|
+
|
|
67
94
|
Then install the `pxt` command line tool (only need to do it once):
|
|
68
95
|
|
|
69
96
|
```
|
package/built/target.js
CHANGED
|
@@ -380,8 +380,8 @@ var pxtTargetBundle = {
|
|
|
380
380
|
},
|
|
381
381
|
"uploadDocs": false,
|
|
382
382
|
"versions": {
|
|
383
|
-
"target": "0.
|
|
384
|
-
"pxt": "0.
|
|
383
|
+
"target": "0.4.0",
|
|
384
|
+
"pxt": "0.4.0"
|
|
385
385
|
},
|
|
386
386
|
"blocksprj": {
|
|
387
387
|
"id": "blocksprj",
|
|
@@ -4354,7 +4354,7 @@ var pxtTargetBundle = {
|
|
|
4354
4354
|
}
|
|
4355
4355
|
}
|
|
4356
4356
|
},
|
|
4357
|
-
"sha": "
|
|
4357
|
+
"sha": "5db1037621420c40f35b311f32508da97b79a174c5830c0d808543ff7040e943"
|
|
4358
4358
|
}
|
|
4359
4359
|
}
|
|
4360
4360
|
}
|