Skip to content
Merged
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
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^2.4.5",
"node-fetch": "2.6.7",
"node-polyfill-webpack-plugin": "^1.1.4",
"nodemon-webpack-plugin": "^4.3.1",
"raw-loader": "^4.0.2",
"sass": "^1.32.11",
Expand Down
2 changes: 0 additions & 2 deletions tests/src/Application.njs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import NestedProxy from './NestedProxy';
import ParentComponent from './ParentComponent';
import PersistentComponent from './PersistentComponent';
import PluginAttributes from './PluginAttributes';
import Polyfill from './Polyfill';
import PublicServerFunctions from './PublicServerFunctions.njs';
import PureComponents from './PureComponents';
import WebpackCustomPlugin from './WebpackCustomPlugin';
Expand Down Expand Up @@ -110,7 +109,6 @@ class Application extends Nullstack {
<WebpackCustomPlugin route="/webpack-custom-plugin" />
<ComponentTernary route="/component-ternary" />
<AnchorModifiers route="/anchor-modifiers" />
<Polyfill route="/polyfill" />
<ErrorPage route="*" />
</main>
)
Expand Down
63 changes: 0 additions & 63 deletions tests/src/Polyfill.njs

This file was deleted.

151 changes: 0 additions & 151 deletions tests/src/Polyfill.test.js

This file was deleted.

4 changes: 0 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const TerserPlugin = require('terser-webpack-plugin');
const crypto = require("crypto");
const { readdirSync } = require('fs');
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin")

const buildKey = crypto.randomBytes(20).toString('hex');

Expand Down Expand Up @@ -215,9 +214,6 @@ function client(env, argv) {
const plugins = [
new MiniCssExtractPlugin({
filename: "client.css"
}),
new NodePolyfillPlugin({
excludeAliases: ["console"]
})
]
return {
Expand Down