diff --git a/Gruntfile.js b/Gruntfile.js index d93e0650..60f688fa 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -172,7 +172,7 @@ module.exports = function (grunt) { }, module_no_pro: { src: jsCoreFilesToCombine, - dest: 'dist/module/no-pro.js', + dest: 'dist/module/no-pro/index.js', options: { stripBanners: true, banner: "import { tzlib_get_ical_block, tzlib_get_offset, tzlib_get_timezones } from 'timezones-ical-library';\r\n", @@ -182,7 +182,7 @@ module.exports = function (grunt) { }, module_unstyle: { src: jsCoreFilesToCombinePro, - dest: 'dist/module/unstyle.js', + dest: 'dist/module/unstyle/index.js', options: { stripBanners: true, banner: "import { tzlib_get_ical_block, tzlib_get_offset, tzlib_get_timezones } from 'timezones-ical-library';\r\n", @@ -192,7 +192,7 @@ module.exports = function (grunt) { }, module_no_pro_unstyle: { src: jsCoreFilesToCombine, - dest: 'dist/module/no-pro-unstyle.js', + dest: 'dist/module/no-pro-unstyle/index.js', options: { stripBanners: true, banner: "import { tzlib_get_ical_block, tzlib_get_offset, tzlib_get_timezones } from 'timezones-ical-library';\r\n", @@ -212,7 +212,7 @@ module.exports = function (grunt) { }, commonJS_no_pro: { src: jsCoreFilesToCombine, - dest: 'dist/commonjs/no-pro.js', + dest: 'dist/commonjs/no-pro/index.js', options: { stripBanners: true, banner: "// eslint-disable-next-line @typescript-eslint/no-var-requires\r\nconst tzlibActions = require('timezones-ical-library');\r\n", @@ -222,7 +222,7 @@ module.exports = function (grunt) { }, commonJS_unstyle: { src: jsCoreFilesToCombinePro, - dest: 'dist/commonjs/unstyle.js', + dest: 'dist/commonjs/unstyle/index.js', options: { stripBanners: true, banner: "// eslint-disable-next-line @typescript-eslint/no-var-requires\r\nconst tzlibActions = require('timezones-ical-library');\r\n", @@ -232,7 +232,7 @@ module.exports = function (grunt) { }, commonJS_no_pro_unstyle: { src: jsCoreFilesToCombine, - dest: 'dist/commonjs/no-pro-unstyle.js', + dest: 'dist/commonjs/no-pro-unstyle/index.js', options: { stripBanners: true, banner: "// eslint-disable-next-line @typescript-eslint/no-var-requires\r\nconst tzlibActions = require('timezones-ical-library');\r\n", diff --git a/demo/package-lock.json b/demo/package-lock.json index 13acc038..1611010f 100644 --- a/demo/package-lock.json +++ b/demo/package-lock.json @@ -51,7 +51,7 @@ } }, "..": { - "version": "2.5.0-next.1", + "version": "2.5.0-next.2", "license": "ELv2", "dependencies": { "timezones-ical-library": "^1.7.1" diff --git a/demo/pages/advanced-use.vue b/demo/pages/advanced-use.vue index e569833d..134eb686 100644 --- a/demo/pages/advanced-use.vue +++ b/demo/pages/advanced-use.vue @@ -1,5 +1,5 @@