Skip to content

Commit 044ca6b

Browse files
authored
Fix build on CI runners (#9)
1 parent d0f1e39 commit 044ca6b

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"repository": "https://github.com/datalens-tech/ui-sandbox-modules.git",
66
"author": "DataLens Team <https://github.com/datalens-tech>",
77
"files": [
8-
"dist/",
9-
"src/"
8+
"dist/"
109
],
1110
"scripts": {
1211
"build": "rm -rf dist && NODE_OPTIONS=--max_old_space_size=4096 webpack -c webpack.config.js",
File renamed without changes.
File renamed without changes.

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212
import: '@gravity-ui/date-utils.2.5.3',
1313
},
1414
...entries.reduce((acc, entry) => {
15-
acc[entry] = path.resolve(__dirname, `./src/entries/${entry.replace('/', '_')}.ts`);
15+
acc[entry] = path.resolve(__dirname, `./src/entries/${entry.replace('/', '_')}.js`);
1616
return acc;
1717
}, {}),
1818
},

0 commit comments

Comments
 (0)