@financial-times/n-myft-ui 25.0.0 → 25.0.1

Sign up to get free protection for your applications and to get access to all the features.
package/webpack.config.js DELETED
@@ -1,34 +0,0 @@
1
- const path = require('path');
2
-
3
- module.exports = {
4
- entry: './components/index.js',
5
- resolve: {
6
- extensions: ['.js', '.jsx']
7
- },
8
- module: {
9
- rules: [
10
- {
11
- test: /\.(js|jsx)$/,
12
- exclude: /node_modules/,
13
- use: [
14
- {
15
- loader: 'babel-loader',
16
- options: {
17
- presets: [
18
- 'react',
19
- 'stage-2'
20
- ]
21
- }
22
- }
23
- ]
24
- }
25
- ]
26
- },
27
- target: 'node',
28
- output: {
29
- path: path.resolve(__dirname, 'dist/bundles'),
30
- filename: 'bundle.js',
31
- libraryTarget: 'umd',
32
- library: '@financial-times/n-myft-ui'
33
- }
34
- };