Skip to content

Commit

Permalink
fix(csv): export csv_sync
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Nov 5, 2021
1 parent f5beace commit 1353284
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/csv/dist/iife/sync.js
@@ -1,4 +1,4 @@
var csv = (function (exports) {
var csv_sync = (function (exports) {
'use strict';

var global$1 = (typeof global !== "undefined" ? global :
Expand Down
2 changes: 1 addition & 1 deletion packages/csv/dist/umd/sync.js
@@ -1,7 +1,7 @@
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.csv = {}));
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.csv_sync = {}));
})(this, (function (exports) { 'use strict';

var global$1 = (typeof global !== "undefined" ? global :
Expand Down
4 changes: 2 additions & 2 deletions packages/csv/rollup.config.js
Expand Up @@ -54,12 +54,12 @@ export default [{
{
file: `dist/iife/sync.js`,
format: 'iife',
name: 'csv'
name: 'csv_sync'
},
{
file: `dist/umd/sync.js`,
format: 'umd',
name: 'csv'
name: 'csv_sync'
},
],
plugins: [eslint({
Expand Down

0 comments on commit 1353284

Please sign in to comment.