* Build script to pull i18n into i18n/_default * Fix header * Current strings as extracted * details_windows without prefix * clean before build * Alwasy extract babel strings * clean & run build before extraction * Update settings messages * Put back template string (PR comment) * PR comment cleanups & logging * Less complicated string type check (PR comment) * Remove node cache to extract all keys (Thanks @ngotchac) * Merge in defaults from i18n/en (Comment by @h3ll0fr13nd) * Unique index keys only * Update with latest master strings * _.defaultsDeep (Thanks to @dehurst) * Use to-source for string formatting * Sync with toSource output on latest master * Updated to use/output sorted objects
		
			
				
	
	
		
			34 lines
		
	
	
		
			672 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			672 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
|   "presets": [
 | |
|     "es2017", "es2016", "es2015",
 | |
|     "stage-0", "react"
 | |
|   ],
 | |
|   "plugins": [
 | |
|     "transform-decorators-legacy",
 | |
|     "transform-class-properties",
 | |
|     "transform-object-rest-spread",
 | |
|     "lodash",
 | |
|     "recharts"
 | |
|   ],
 | |
|   "retainLines": true,
 | |
|   "env": {
 | |
|     "production": {
 | |
|       "plugins": [
 | |
|         "transform-react-remove-prop-types"
 | |
|       ]
 | |
|     },
 | |
|     "development": {
 | |
|       "plugins": [
 | |
|         [ "react-intl", { "messagesDir": "./.build/i18n/" } ],
 | |
|         "react-hot-loader/babel"
 | |
|       ]
 | |
|     },
 | |
|     "test": {
 | |
|       "plugins": [
 | |
|         "transform-runtime",
 | |
|         [ "babel-plugin-webpack-alias", { "config": "webpack/test.js" } ]
 | |
|       ]
 | |
|     }
 | |
|   }
 | |
| }
 |