This repository was archived by the owner on Jun 8, 2019. It is now read-only.
This repository was archived by the owner on Jun 8, 2019. It is now read-only.
directory gets created outside of messagesDir #23
Closed
Description
I have an app that links to an SDK using npm link. This all works fine, except for babel-plugin-react-intl generating a directory outside of messagesDir.
So the app.json gets created in the correct location:
build/messages/app.json
but the .json files of the SDK (which is in node_modules/boundlessgeo-sdk) get generated in sdk in the root of the repo:
Barts-MacBook-Air:tabbed bartvandeneijnden$ ls -l sdk/js/components/
total 112
-rw-r--r-- 1 bartvandeneijnden staff 1265 Dec 4 09:06 AddLayer.json
-rw-r--r-- 1 bartvandeneijnden staff 157 Dec 4 09:06 Chart.json
-rw-r--r-- 1 bartvandeneijnden staff 1417 Dec 4 09:06 FeatureTable.json
-rw-r--r-- 1 bartvandeneijnden staff 178 Dec 4 09:06 Geocoding.json
-rw-r--r-- 1 bartvandeneijnden staff 154 Dec 4 09:06 GeocodingResults.json
-rw-r--r-- 1 bartvandeneijnden staff 314 Dec 4 09:06 Geolocation.json
-rw-r--r-- 1 bartvandeneijnden staff 124 Dec 4 09:06 HomeButton.json
-rw-r--r-- 1 bartvandeneijnden staff 275 Dec 4 09:06 ImageExport.json
-rw-r--r-- 1 bartvandeneijnden staff 2010 Dec 4 09:06 LayerListItem.json
-rw-r--r-- 1 bartvandeneijnden staff 568 Dec 4 09:06 Measure.json
-rw-r--r-- 1 bartvandeneijnden staff 152 Dec 4 09:06 QGISLegend.json
-rw-r--r-- 1 bartvandeneijnden staff 1044 Dec 4 09:06 QGISPrint.json
-rw-r--r-- 1 bartvandeneijnden staff 1347 Dec 4 09:06 QueryBuilder.json
-rw-r--r-- 1 bartvandeneijnden staff 285 Dec 4 09:06 Select.son
Any pointers to as why this might be happening? This is only when using npm link between app and SDK.