Skip to content

Commit 4304583

Browse files
committed
rename umd-temp to umd_temp
1 parent 725da9b commit 4304583

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jspm_packages
3737
# Lib
3838
lib
3939
umd
40-
umd-temp
40+
umd_temp
4141

4242
others
4343
.DS_Store

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ yarn.lock
1616
src
1717
test
1818
examples
19-
umd-temp
19+
umd_temp
2020
CHANGELOG.md
2121
.travis.yml
2222
.editorconfig

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Supabase Realtime API",
55
"main": "./lib/index.js",
66
"scripts": {
7-
"clean": "rimraf lib && rimraf umd && rimraf umd-temp",
7+
"clean": "rimraf lib && rimraf umd && rimraf umd_temp",
88
"test": "mocha -r @babel/register -r babel-polyfill test/unit/**/*.js",
99
"test:integration": "mocha -r @babel/register -r babel-polyfill test/integration/**/*.js",
1010
"test:auth": "mocha --timeout 10000 -r @babel/register -r babel-polyfill test/integration/testAuth.js",
@@ -14,7 +14,7 @@
1414
"test:examples": "node examples/",
1515
"cover": "nyc --check-coverage && npm test",
1616
"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",
1818
"prepublish": "npm run clean && npm run build && npm run build:umd",
1919
"deploy:minor": "npm version minor && npm publish --access=public",
2020
"deploy:patch": "npm version patch && npm publish --access=public"

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const path = require('path');
22

33
module.exports = {
44
mode: 'production',
5-
entry: './umd-temp/index.js',
5+
entry: './umd_temp/index.js',
66
output: {
77
path: path.resolve(__dirname, 'umd'),
88
filename: 'supabase.js',

0 commit comments

Comments
 (0)