Skip to content

Commit 4d9ff7f

Browse files
[WRONG FIX] Just to share, use notation
"main": "./dist/ods-charts.js", "module": "./dist/ods-charts.esm.js",
1 parent 6205fcf commit 4d9ff7f

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"files": [
99
"./dist/**/*"
1010
],
11-
"type": "module",
12-
"main": "./dist/ods-charts-module.js",
11+
"main": "./dist/ods-charts.js",
12+
"module": "./dist/ods-charts.esm.js",
1313
"types": "./dist/ods-charts.d.js",
1414
"scripts": {
1515
"build": "webpack",

webpack.config.js

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import path from 'node:path';
2-
import { fileURLToPath } from 'node:url';
3-
4-
const __filename = fileURLToPath(import.meta.url);
5-
const __dirname = path.dirname(__filename);
1+
const path = require('path');
62

73
const defaultConfig = {
84
mode: 'development',
@@ -23,7 +19,7 @@ const defaultConfig = {
2319
},
2420
};
2521

26-
export default [
22+
module.exports = [
2723
{
2824
...defaultConfig,
2925
output: {
@@ -39,7 +35,7 @@ export default [
3935
...defaultConfig,
4036
output: {
4137
path: path.resolve(__dirname, './dist'),
42-
filename: 'ods-charts-module.js',
38+
filename: 'ods-charts.esm.js',
4339
library: {
4440
type: 'module',
4541
},

0 commit comments

Comments
 (0)