File tree 7 files changed +8645
-11136
lines changed
7 files changed +8645
-11136
lines changed Original file line number Diff line number Diff line change 28
28
- attach_workspace :
29
29
at : .
30
30
- run : echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
31
- - run : npm publish
31
+ - run : npm publish --tag test-release
32
32
# dont change anything
33
33
workflows :
34
34
version : 2
Original file line number Diff line number Diff line change @@ -4,4 +4,12 @@ module.exports = {
4
4
V3 : 'https://api.topcoder-dev.com/v3' ,
5
5
} ,
6
6
dummyConfigKey : 'Dummy config value' ,
7
+ SECRET : {
8
+ TC_M2M : {
9
+ AUTH0_URL : '' ,
10
+ AUTH0_AUDIENCE : '' ,
11
+ TOKEN_CACHE_TIME : '' ,
12
+ AUTH0_PROXY_SERVER_URL : '' ,
13
+ } ,
14
+ } ,
7
15
} ;
Original file line number Diff line number Diff line change 2
2
const webpack = require ( 'webpack' ) ;
3
3
4
4
module . exports = {
5
- plugins : [
6
- // eslint-disable-next-line global-require
7
- new webpack . DefinePlugin ( { CONFIG : JSON . stringify ( require ( 'config' ) ) } ) ,
8
- ] ,
5
+ node : {
6
+ tls : 'empty' ,
7
+ fs : 'empty' ,
8
+ net : 'empty' ,
9
+ } ,
9
10
// Don't include the dependencies to keep built bundle small,
10
11
// they will be provided by the app using this lib
11
12
externals : [
@@ -24,8 +25,10 @@ module.exports = {
24
25
'tc-accounts' ,
25
26
'to-capital-case' ,
26
27
'topcoder-react-utils' ,
28
+ 'tc-core-library-js' ,
29
+ ] ,
30
+ plugins : [
31
+ // eslint-disable-next-line global-require
32
+ new webpack . DefinePlugin ( { CONFIG : JSON . stringify ( require ( 'config' ) ) } ) ,
27
33
] ,
28
- node : {
29
- fs : 'empty' ,
30
- } ,
31
34
} ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments