@financial-times/n-myft-ui 30.4.0 → 30.4.2
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 +9 -0
- package/.circleci/config.yml +3 -0
- package/.eslintignore +1 -0
- package/Makefile +3 -0
- package/build-state/npm-shrinkwrap.json +16686 -8227
- package/package.json +3 -1
package/.babelrc
ADDED
package/.circleci/config.yml
CHANGED
@@ -77,6 +77,9 @@ jobs:
|
|
77
77
|
- run:
|
78
78
|
name: Install project dependencies
|
79
79
|
command: make install
|
80
|
+
- run:
|
81
|
+
name: Transpile JSX to JS
|
82
|
+
command: make transpile-jsx
|
80
83
|
- run:
|
81
84
|
name: shared-helper / generate-build-state-artifacts
|
82
85
|
command: .circleci/shared-helpers/helper-generate-build-state-artifacts
|
package/.eslintignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
dist/
|