Skip to content

Commit

Permalink
Fix build on CI runners
Browse files Browse the repository at this point in the history
  • Loading branch information
korvin89 committed Nov 14, 2024
1 parent d0f1e39 commit 8e1cc92
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"repository": "https://github.com/datalens-tech/ui-sandbox-modules.git",
"author": "DataLens Team <https://github.com/datalens-tech>",
"files": [
"dist/",
"src/"
"dist/"
],
"scripts": {
"build": "rm -rf dist && NODE_OPTIONS=--max_old_space_size=4096 webpack -c webpack.config.js",
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
import: '@gravity-ui/date-utils.2.5.3',
},
...entries.reduce((acc, entry) => {
acc[entry] = path.resolve(__dirname, `./src/entries/${entry.replace('/', '_')}.ts`);
acc[entry] = path.resolve(__dirname, `./src/entries/${entry.replace('/', '_')}.js`);
return acc;
}, {}),
},
Expand Down

0 comments on commit 8e1cc92

Please sign in to comment.