Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

fix(infrastructure): remove babel loader #4321

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"fix": "npm-run-all --parallel fix:*",
"lint:css": "stylelint \"packages/**/*.scss\"; stylelint --config=test/screenshot/.stylelintrc.yaml \"test/screenshot/**/*.scss\"",
"lint:js": "eslint packages test scripts webpack.config.js demos/webpack.config.js karma.conf.js",
"lint:ts": "tslint \"packages/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\"",
"lint:ts": "tslint --exclude \"test/**/*.d.ts\" \"packages/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\"",
"lint:html": "find test/screenshot/spec/ -name '*.html' | grep -v 'index.html$' | xargs htmllint",
"lint:imports": "node scripts/check-imports.js",
"lint": "npm-run-all --parallel lint:*",
Expand Down
1 change: 0 additions & 1 deletion scripts/webpack/js-bundle-factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ class JsBundleFactory {
test: /\.ts$/,
exclude: /node_modules/,
use: [
babelLoader,
{
loader: 'ts-loader',
options: {configFile: tsConfigFilePath},
Expand Down
2 changes: 1 addition & 1 deletion test/screenshot/spec/fixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

import 'url-search-params-polyfill';
import bel from 'bel';
import {ponyfill} from '../../../packages/mdc-dom';
import {ponyfill} from '../../../packages/mdc-dom/index';

window.mdc = window.mdc || {};

Expand Down