Skip to content

Commit

Permalink
HCK-7678: Make the imports of lodash work in the browser (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalii4as authored Aug 16, 2024
1 parent 69ffdc0 commit ede146a
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 4 deletions.
8 changes: 8 additions & 0 deletions esbuild.package.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const path = require('path');
const { copyFolderFiles, addReleaseFlag } = require('@hackolade/hck-esbuild-plugins-pack');
const esbuild = require('esbuild');
const { clean } = require('esbuild-plugin-clean');
const { copy } = require('esbuild-plugin-copy');

const { EXCLUDED_EXTENSIONS, EXCLUDED_FILES, DEFAULT_RELEASE_FOLDER_PATH } = require('./buildConstants');

Expand All @@ -24,10 +25,17 @@ esbuild
outdir: RELEASE_FOLDER_PATH,
minify: true,
logLevel: 'info',
external: ['lodash'],
plugins: [
clean({
patterns: [DEFAULT_RELEASE_FOLDER_PATH],
}),
copy({
assets: {
from: [path.join('node_modules', 'lodash', '**', '*')],
to: [path.join('node_modules', 'lodash')],
},
}),
copyFolderFiles({
fromPath: __dirname,
targetFolderPath: RELEASE_FOLDER_PATH,
Expand Down
142 changes: 140 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@
},
"devDependencies": {
"@hackolade/hck-esbuild-plugins-pack": "0.0.1",
"@typescript-eslint/parser": "7.11.0",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"esbuild": "0.20.2",
"esbuild-plugin-clean": "1.0.1",
"esbuild-plugin-copy": "2.1.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-teamcity": "^1.0.0",
Expand All @@ -78,4 +79,4 @@
"prettier": "3.2.5",
"simple-git-hooks": "2.11.1"
}
}
}

0 comments on commit ede146a

Please sign in to comment.