Skip to content
This repository was archived by the owner on Mar 16, 2021. It is now read-only.

Commit 60c9eb2

Browse files
authored
Improvement: release process should be completely automatic (#81)
* Changed releasing process - wip. #56 * Changed release process + version sync. #56 * Changed release process. #56 * Changed: fs-extra instead of cpr. #56 * Removed: unnecessary use strict from scripts. #56 * Removed unnecessary empty line in script. #56
1 parent 440c277 commit 60c9eb2

7 files changed

Lines changed: 361 additions & 80 deletions

File tree

.release.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@
66
"release_message": true,
77
"remote": "origin",
88
"pre_commit_commands": [
9-
"npm run test"
9+
"npm run test",
10+
"npm run pre-release"
1011
],
1112
"post_commit_commands": [],
1213
"post_complete_commands": [
13-
"npm publish"
14+
"npm publish dist/ce --access public",
15+
"npm publish dist/pro --access public"
1416
],
15-
"files_to_commit": [
16-
"./bundles/**/*",
17-
"./dist/**/*"
18-
]
19-
}
17+
"files_to_commit": []
18+
}

lib/ce/package.json

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,6 @@
11
{
22
"name": "@handsontable/angular",
33
"version": "1.0.0-beta4",
4-
"description": "Official Angular.io directive for Handsontable",
5-
"repository": {
6-
"type": "git",
7-
"url": "https://github.com/handsontable/angular-handsontable.git"
8-
},
9-
"author": {
10-
"name": "Handsoncode",
11-
"email": "hello@handsontable.com"
12-
},
13-
"keywords": [
14-
"angular",
15-
"angular2",
16-
"angular4",
17-
"angular5",
18-
"ngx",
19-
"handsontable",
20-
"data",
21-
"grid",
22-
"table",
23-
"editor",
24-
"grid-editor",
25-
"data-grid",
26-
"data-table",
27-
"spreadsheet",
28-
"excel",
29-
"tabular-data",
30-
"edit-cell",
31-
"editable-table",
32-
"data-spreadsheet"
33-
],
34-
"license": "MIT",
35-
"bugs": {
36-
"url": "https://github.com/handsontable/angular-handsontable/issues"
37-
},
384
"peerDependencies": {
395
"handsontable": "0.35.1",
406
"zone.js": "^0.8.19"

lib/pro/package.json

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,6 @@
11
{
22
"name": "@handsontable-pro/angular",
33
"version": "1.0.0-beta4",
4-
"description": "Official Angular.io directive for Handsontable",
5-
"repository": {
6-
"type": "git",
7-
"url": "https://github.com/handsontable/angular-handsontable.git"
8-
},
9-
"author": {
10-
"name": "Handsoncode",
11-
"email": "hello@handsontable.com"
12-
},
13-
"keywords": [
14-
"angular",
15-
"angular2",
16-
"angular4",
17-
"angular5",
18-
"ngx",
19-
"handsontable",
20-
"data",
21-
"grid",
22-
"table",
23-
"editor",
24-
"grid-editor",
25-
"data-grid",
26-
"data-table",
27-
"spreadsheet",
28-
"excel",
29-
"tabular-data",
30-
"edit-cell",
31-
"editable-table",
32-
"data-spreadsheet"
33-
],
34-
"license": "MIT",
35-
"bugs": {
36-
"url": "https://github.com/handsontable/angular-handsontable/issues"
37-
},
384
"peerDependencies": {
395
"handsontable-pro": "1.15.1",
406
"zone.js": "^0.8.19"

0 commit comments

Comments
 (0)