@financial-times/n-conversion-forms 21.0.0 → 22.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintignore CHANGED
@@ -1,2 +1,3 @@
1
+ /bower_components
1
2
  /dist
2
3
  /.eslintrc.js
package/.prettierignore CHANGED
@@ -7,6 +7,7 @@ package-lock.json
7
7
  /tmp/
8
8
  /dist
9
9
 
10
+ bower_components
10
11
  node_modules
11
12
 
12
13
  /coverage
@@ -1,3 +1,4 @@
1
+ const { PageKitBowerResolvePlugin } = require('@financial-times/dotcom-build-bower-resolve');
1
2
 
2
3
  module.exports = {
3
4
  'stories': [
@@ -8,6 +9,7 @@ module.exports = {
8
9
  '@storybook/addon-a11y'
9
10
  ],
10
11
  webpackFinal: async (config) => {
12
+ config.plugins.push(new PageKitBowerResolvePlugin());
11
13
  return config;
12
14
  }
13
15
  };
package/README.md CHANGED
@@ -23,6 +23,7 @@ For installing dependencies, running the build process and the documentation app
23
23
 
24
24
  - [Node](https://nodejs.org/en/)
25
25
  - [NPM](https://www.npmjs.com/)
26
+ - [Bower](https://bower.io/)
26
27
 
27
28
  ## Usage
28
29