File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ jspm_packages
37
37
# Lib
38
38
lib
39
39
umd
40
- umd-temp
40
+ umd_temp
41
41
42
42
others
43
43
.DS_Store
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ yarn.lock
16
16
src
17
17
test
18
18
examples
19
- umd-temp
19
+ umd_temp
20
20
CHANGELOG.md
21
21
.travis.yml
22
22
.editorconfig
Original file line number Diff line number Diff line change 4
4
"description" : " Supabase Realtime API" ,
5
5
"main" : " ./lib/index.js" ,
6
6
"scripts" : {
7
- "clean" : " rimraf lib && rimraf umd && rimraf umd-temp " ,
7
+ "clean" : " rimraf lib && rimraf umd && rimraf umd_temp " ,
8
8
"test" : " mocha -r @babel/register -r babel-polyfill test/unit/**/*.js" ,
9
9
"test:integration" : " mocha -r @babel/register -r babel-polyfill test/integration/**/*.js" ,
10
10
"test:auth" : " mocha --timeout 10000 -r @babel/register -r babel-polyfill test/integration/testAuth.js" ,
14
14
"test:examples" : " node examples/" ,
15
15
"cover" : " nyc --check-coverage && npm test" ,
16
16
"build" : " BABEL_ENV=production babel src --out-dir lib" ,
17
- "build:umd" : " BABEL_ENV=production babel --plugins @babel/plugin-transform-modules-umd src --out-dir umd-temp && webpack" ,
17
+ "build:umd" : " BABEL_ENV=production babel --plugins @babel/plugin-transform-modules-umd src --out-dir umd_temp && webpack" ,
18
18
"prepublish" : " npm run clean && npm run build && npm run build:umd" ,
19
19
"deploy:minor" : " npm version minor && npm publish --access=public" ,
20
20
"deploy:patch" : " npm version patch && npm publish --access=public"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const path = require('path');
2
2
3
3
module . exports = {
4
4
mode : 'production' ,
5
- entry : './umd-temp /index.js' ,
5
+ entry : './umd_temp /index.js' ,
6
6
output : {
7
7
path : path . resolve ( __dirname , 'umd' ) ,
8
8
filename : 'supabase.js' ,
You can’t perform that action at this time.
0 commit comments