Skip to content

Commit f586b65

Browse files
committed
lint --fix
1 parent b8ed9cf commit f586b65

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

babel.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default {
22
presets: [
3-
['@babel/preset-env', {
4-
targets: {
3+
['@babel/preset-env', {
4+
targets: {
55
browsers: ['> 1%', 'last 3 versions', 'not dead']
66
}
77
}],

webpack.config.mjs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import path from 'path'
22
import TerserPlugin from 'terser-webpack-plugin'
33

44
const externalsBase = {
5-
'fs': 'null',
5+
fs: 'null',
66
'node-fetch': 'fetch',
77
'isomorphic-fetch': 'fetch',
88
'text-encoding': 'TextEncoder',
99
'@trust/webcrypto': 'crypto',
1010
// Removed @xmldom/xmldom and whatwg-url - use native browser APIs
11-
'rdflib': '$rdf',
11+
rdflib: '$rdf',
1212
'solid-logic': 'SolidLogic'
1313
}
1414

@@ -28,8 +28,8 @@ const common = {
2828
resolve: {
2929
extensions: ['.ts', '.tsx', '.js', '.jsx'],
3030
extensionAlias: {
31-
'.js': ['.js', '.ts'],
32-
'.mjs': ['.mjs', '.mts'],
31+
'.js': ['.js', '.ts'],
32+
'.mjs': ['.mjs', '.mts'],
3333
},
3434
fallback: { path: false }
3535
},
@@ -51,12 +51,12 @@ const common = {
5151
}
5252
}
5353
}, {
54-
test: /\.sparql$/i,
55-
type: 'asset/source'
56-
}, {
57-
test: /\.ttl$/i,
58-
type: 'asset/source'
59-
}]
54+
test: /\.sparql$/i,
55+
type: 'asset/source'
56+
}, {
57+
test: /\.ttl$/i,
58+
type: 'asset/source'
59+
}]
6060
}
6161
}
6262

0 commit comments

Comments
 (0)