@financial-times/n-conversion-forms 31.0.2 → 31.0.3
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/.babelrc.js +7 -0
- package/.toolkitstate/ci.json +2 -2
- package/README.md +1 -1
package/.babelrc.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"presets": ["@babel/preset-env", "@babel/preset-react"],
|
|
3
|
+
"plugins": ["@babel/plugin-transform-runtime"],
|
|
4
|
+
// As we are using a mix of commonJS and ESM files we need to tell babel this
|
|
5
|
+
// More info: https://babeljs.io/docs/options#sourcetype
|
|
6
|
+
"sourceType": "unambiguous"
|
|
7
|
+
};
|
package/.toolkitstate/ci.json
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Contains HTML and CSS that's used within the conversion forms
|
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
9
|
npm install # install all dependencies
|
|
10
|
-
npm
|
|
10
|
+
npm start # build and start documentation app at http://local.ft.com:5005/
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Table of contents
|