Skip to content

Commit 264dc0a

Browse files
committed
fix github actions
1 parent b938120 commit 264dc0a

File tree

3 files changed

+35
-33
lines changed

3 files changed

+35
-33
lines changed

.github/workflows/main.yml

+32-32
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ jobs:
3232
- uses: actions/checkout@v2
3333

3434
- name: Remove v11
35-
run: bit remove angular-v11 -s -f
35+
run: bit remove angular-v11 -s -f --log
3636

3737
- name: Remove v10
38-
run: bit remove angular-v10 -s -f
38+
run: bit remove angular-v10 -s -f --log
3939

4040
- name: Remove v9
41-
run: bit remove angular-v9 -s -f
41+
run: bit remove angular-v9 -s -f --log
4242

4343
- name: Remove v8
44-
run: bit remove angular-v8 -s -f
44+
run: bit remove angular-v8 -s -f --log
4545

4646
- name: Add example app
4747
run: bit add examples/demo-lib-v12
@@ -87,30 +87,30 @@ jobs:
8787
- uses: actions/checkout@v2
8888

8989
- name: Remove v12
90-
run: bit remove angular-v12 -s -f
90+
run: bit remove angular-v12 -s -f --log
9191

9292
- name: Remove v10
93-
run: bit remove angular-v10 -s -f
93+
run: bit remove angular-v10 -s -f --log
9494

9595
- name: Remove v9
96-
run: bit remove angular-v9 -s -f
96+
run: bit remove angular-v9 -s -f --log
9797

9898
- name: Remove v8
99-
run: bit remove angular-v8 -s -f
99+
run: bit remove angular-v8 -s -f --log
100100

101101
- name: Add example app
102-
run: bit add examples/demo-lib-v11
102+
run: bit add examples/demo-lib-v11 --log
103103

104104
- name: Install dependencies
105-
run: bit install
105+
run: bit install --log
106106

107107
# Compile the aspects
108108
- name: Bit compile aspects
109109
run: bit compile ng-packagr angular-eslint-config angular angular-v11 --log
110110

111111
# Run bit link to regenerate the package.json of the example component
112112
- name: Bit link
113-
run: bit link
113+
run: bit link --log
114114

115115
# Compile the example component
116116
- name: Bit compile example
@@ -142,30 +142,30 @@ jobs:
142142
- uses: actions/checkout@v2
143143

144144
- name: Remove v12
145-
run: bit remove angular-v12 -s -f
145+
run: bit remove angular-v12 -s -f --log
146146

147147
- name: Remove v11
148-
run: bit remove angular-v11 -s -f
148+
run: bit remove angular-v11 -s -f --log
149149

150150
- name: Remove v9
151-
run: bit remove angular-v9 -s -f
151+
run: bit remove angular-v9 -s -f --log
152152

153153
- name: Remove v8
154-
run: bit remove angular-v8 -s -f
154+
run: bit remove angular-v8 -s -f --log
155155

156156
- name: Add example app
157-
run: bit add examples/demo-lib-v10
157+
run: bit add examples/demo-lib-v10 --log
158158

159159
- name: Install dependencies
160-
run: bit install
160+
run: bit install --log
161161

162162
# Compile the aspects
163163
- name: Bit compile aspects
164164
run: bit compile ng-packagr angular-eslint-config angular angular-v10 --log
165165

166166
# Run bit link to regenerate the package.json of the example component
167167
- name: Bit link
168-
run: bit link
168+
run: bit link --log
169169

170170
# Compile the example component
171171
- name: Bit compile example
@@ -197,30 +197,30 @@ jobs:
197197
- uses: actions/checkout@v2
198198

199199
- name: Remove v12
200-
run: bit remove angular-v12 -s -f
200+
run: bit remove angular-v12 -s -f --log
201201

202202
- name: Remove v11
203-
run: bit remove angular-v11 -s -f
203+
run: bit remove angular-v11 -s -f --log
204204

205205
- name: Remove v10
206-
run: bit remove angular-v10 -s -f
206+
run: bit remove angular-v10 -s -f --log
207207

208208
- name: Remove v8
209-
run: bit remove angular-v8 -s -f
209+
run: bit remove angular-v8 -s -f --log
210210

211211
- name: Add example app
212-
run: bit add examples/demo-lib-v9
212+
run: bit add examples/demo-lib-v9 --log
213213

214214
- name: Install dependencies
215-
run: bit install
215+
run: bit install --log
216216

217217
# Compile the aspects
218218
- name: Bit compile aspects
219219
run: bit compile ng-packagr angular-eslint-config angular angular-v9 --log
220220

221221
# Run bit link to regenerate the package.json of the example component
222222
- name: Bit link
223-
run: bit link
223+
run: bit link --log
224224

225225
# Compile the example component
226226
- name: Bit compile example
@@ -252,30 +252,30 @@ jobs:
252252
- uses: actions/checkout@v2
253253

254254
- name: Remove v12
255-
run: bit remove angular-v12 -s -f
255+
run: bit remove angular-v12 -s -f --log
256256

257257
- name: Remove v11
258-
run: bit remove angular-v11 -s -f
258+
run: bit remove angular-v11 -s -f --log
259259

260260
- name: Remove v10
261-
run: bit remove angular-v10 -s -f
261+
run: bit remove angular-v10 -s -f --log
262262

263263
- name: Remove v9
264-
run: bit remove angular-v9 -s -f
264+
run: bit remove angular-v9 -s -f --log
265265

266266
- name: Add example app
267-
run: bit add examples/demo-lib-v8
267+
run: bit add examples/demo-lib-v8 --log
268268

269269
- name: Install dependencies
270-
run: bit install
270+
run: bit install --log
271271

272272
# Compile the aspects
273273
- name: Bit compile aspects
274274
run: bit compile ng-packagr angular-eslint-config angular angular-v8 --log
275275

276276
# Run bit link to regenerate the package.json of the example component
277277
- name: Bit link
278-
run: bit link
278+
run: bit link --log
279279

280280
# Compile the example component
281281
- name: Bit compile example

packages/angular/component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"zone.js": "-"
3030
},
3131
"peerDependencies": {
32-
"@angular-devkit/build-angular": "*",
32+
"@angular-devkit/build-angular": ">= 0.0.1",
3333
"@angular/core": ">= 8.0.0",
3434
"@angular/common": ">= 8.0.0",
3535
"@angular/compiler-cli": ">= 8.0.0",

workspace.jsonc

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"packageManager": "teambit.dependencies/pnpm",
3535
"policy": {
3636
"dependencies": {
37+
"@babel/runtime": "7.12.18",
3738
"@teambit/harmony": "^0.2.11",
3839
"@teambit/legacy": "^1.0.129",
3940
"@types/dompurify": "^2.2.2",
@@ -43,6 +44,7 @@
4344
"@types/node": "~12.11.1",
4445
"@types/object-hash": "~2.1.0",
4546
"buffer": "6.0.3",
47+
"core-js": "3.9.0",
4648
"dompurify": "^2.2.9",
4749
"eslint-config-airbnb-typescript": {
4850
"version": "5.1.0",

0 commit comments

Comments
 (0)