File tree Expand file tree Collapse file tree 3 files changed +17
-11
lines changed Expand file tree Collapse file tree 3 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 52
52
- name : Install dependencies
53
53
run : yarn install
54
54
55
+ - name : Build
56
+ run : yarn build
57
+
55
58
- name : Detect tag type (RELEASE or BETA)
56
59
id : tag_check
57
60
run : |
75
78
if : steps.tag_check.outputs.tag_type == 'BETA'
76
79
run : npm publish --tag next
77
80
env :
78
- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
79
-
81
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
tsconfig.json
2
- src
3
2
.git
3
+ .github
4
4
config
5
5
scripts
6
6
tslint.json
7
7
.travis.yml
8
8
_config.yml
9
9
checkTag.sh
10
10
renovate.json
11
- * .tgz
11
+ * .tgz
12
+
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " reactivexcomponent.js" ,
3
- "version" : " 7.0.3 " ,
3
+ "version" : " 7.0.4 " ,
4
4
"description" : " Javascript reactive client API for XComponent" ,
5
- "main" : " . /index.js" ,
6
- "module" : " . /index.js" ,
7
- "types" : " . /index.d.ts" ,
5
+ "main" : " dist /index.js" ,
6
+ "module" : " dist /index.js" ,
7
+ "types" : " dist /index.d.ts" ,
8
8
"exports" : {
9
- "import" : " ./index.js" ,
10
- "require" : " ./index.js"
9
+ "import" : " ./dist /index.js" ,
10
+ "require" : " ./dist /index.js"
11
11
},
12
12
"directories" : {
13
13
"test" : " test" ,
113
113
"hooks" : {
114
114
"pre-commit" : " pretty-quick --staged"
115
115
}
116
- }
116
+ },
117
+ "files" : [
118
+ " dist/"
119
+ ]
117
120
}
You can’t perform that action at this time.
0 commit comments