Files
flipper/static/package.json
Pascal Hartig 715d12db8d Use recursive ctime to determine plugin cache expiration
Summary:
Disabling `atime` on Linux is quite common. (I don't have data to back this up,
but with my sample size of n=1, 100% fall into this bucket.) In that case,
the plugins will be cached indefinitely.

Using `ctime` on the directory doesn't really mean anything because it is
only affected by changes *to* the directory, not the files inside.

So, let's do this right and use the most recent change to any of the files
*inside* the directory instead.

Reviewed By: danielbuechele

Differential Revision: D9479491

fbshipit-source-id: 6945d7bf87defa67679cacdaf0a978d8ff1770c3
2018-08-23 04:57:29 -07:00

19 lines
595 B
JSON

{
"name": "sonar-static",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/generator": "^7.0.0-beta.40",
"babel-plugin-transform-class-properties": "^7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-commonjs": "^7.0.0-beta.3",
"babel-plugin-transform-flow-strip-types": "^7.0.0-beta.3",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"babel-preset-react": "^7.0.0-beta.3",
"babylon": "^7.0.0-beta.40",
"metro": "^0.28.0",
"recursive-readdir": "2.2.2"
}
}