Skip to content

Commit 4e00b16

Browse files
fix(development): delete release config
1 parent ca7bc78 commit 4e00b16

File tree

3 files changed

+5
-23
lines changed

3 files changed

+5
-23
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
node-version: '16'
1515
- name: npm Install
16-
run: npm install
16+
run: npm install --legacy-peer-deps
1717
- name: Install dependencies
1818
run: npm ci --legacy-peer-deps #TODO: remove this flag once we get rid of tslint
1919
- name: Prettier check

.github/workflows/storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
with:
1212
persist-credentials: false
1313
- name: npm Install
14-
run: npm install
14+
run: npm install --legacy-peer-deps
1515
- name: npm Build
1616
run: npm run build:storybook
1717
- name: Deploy 🚀

package.json

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,6 @@
3333
"styles",
3434
"themes"
3535
],
36-
"release": {
37-
"branches": [
38-
"master"
39-
],
40-
"plugins": [
41-
"@semantic-release/commit-analyzer",
42-
"@semantic-release/release-notes-generator",
43-
[
44-
"@semantic-release/github",
45-
{
46-
"assets": [
47-
"dist/**",
48-
"lib/**"
49-
]
50-
}
51-
]
52-
]
53-
},
5436
"author": "dcl",
5537
"license": "MIT",
5638
"bugs": {
@@ -88,7 +70,8 @@
8870
"typescript": "^4.6.4",
8971
"url-loader": "^2.0.0",
9072
"webpack": "^4.33.0",
91-
"webpack-cli": "^3.3.2"
73+
"webpack-cli": "^3.3.2",
74+
"simple-commit-message": "^4.1.3"
9275
},
9376
"dependencies": {
9477
"@dcl/schemas": "^4.9.0",
@@ -101,8 +84,7 @@
10184
"react-responsive": "^9.0.0-beta.3",
10285
"react-tile-map": "^0.3.2",
10386
"semantic-ui-css": "^2.4.1",
104-
"semantic-ui-react": "^2.0.3",
105-
"simple-commit-message": "^4.1.3"
87+
"semantic-ui-react": "^2.0.3"
10688
},
10789
"peerDependencies": {
10890
"react": "^16.8.0 || ^17.0.0",

0 commit comments

Comments
 (0)