mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
c0368ad090
This allows activestorage users to ship smaller javascript bundles to visitors using modern browsers, as demonstrated in this repository: https://github.com/rmacklin/activestorage-es2015-build-example In that example, the bundle shrinks by 5K (24%). In addition to allowing smaller bundles for those who ship untranspiled code to modern browsers, including the source code in the published package can be useful in other ways: 1. Users can import individual modules rather than the whole library 2. As a result of (1), users can also monkey patch parts of activestorage by importing the relevant module, modifying the exported object, and then importing the rest of activestorage (which would then use the patched object). Note: In order to allow the source code to be depended on rather than the compiled code, we have to declare the external dependency on spark-md5 as a regular dependency, not a development dependency. This means that even users who depend on the compiled code will have to download this package. However, spark-md5 is a small package, so this tradeoff seems worth it.
37 lines
968 B
JSON
37 lines
968 B
JSON
{
|
|
"name": "activestorage",
|
|
"version": "6.0.0-alpha",
|
|
"description": "Attach cloud and local files in Rails applications",
|
|
"main": "app/assets/javascripts/activestorage.js",
|
|
"files": [
|
|
"app/assets/javascripts/*.js",
|
|
"src/*.js"
|
|
],
|
|
"homepage": "http://rubyonrails.org/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rails/rails.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/rails/rails/issues"
|
|
},
|
|
"author": "Javan Makhmali <javan@javan.us>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"spark-md5": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.25.0",
|
|
"babel-loader": "^7.1.1",
|
|
"babel-preset-env": "^1.6.0",
|
|
"eslint": "^4.3.0",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"webpack": "^3.4.0"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "yarn lint",
|
|
"build": "webpack -p",
|
|
"lint": "eslint app/javascript",
|
|
"prepublishOnly": "rm -rf src && cp -R app/javascript/activestorage src"
|
|
}
|
|
}
|