Release 1.4.0
This commit is contained in:
parent
7efc4cdc1d
commit
0b26979839
|
@ -19824,6 +19824,16 @@ module.exports = Filer = {
|
||||||
path: require('./path.js'),
|
path: require('./path.js'),
|
||||||
Errors: require('./errors.js'),
|
Errors: require('./errors.js'),
|
||||||
Shell: require('./shell/shell.js'),
|
Shell: require('./shell/shell.js'),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Importing filer from your webpack config is not recommended.
|
||||||
|
*
|
||||||
|
* The filer `FilerWebpackPlugin` class is exposed directly.
|
||||||
|
*
|
||||||
|
* ```
|
||||||
|
* const { FilerWebpackPlugin } = require('filer/webpack');
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
FilerWebpackPlugin: require('./webpack-plugin')
|
FilerWebpackPlugin: require('./webpack-plugin')
|
||||||
}; // Add a getter for the `fs` instance, which returns
|
}; // Add a getter for the `fs` instance, which returns
|
||||||
// a Filer FileSystem instance, using the default provider/flags.
|
// a Filer FileSystem instance, using the default provider/flags.
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "filer",
|
"name": "filer",
|
||||||
"version": "1.3.1",
|
"version": "1.4.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
"indexeddb",
|
"indexeddb",
|
||||||
"idb"
|
"idb"
|
||||||
],
|
],
|
||||||
"version": "1.3.1",
|
"version": "1.4.0",
|
||||||
"author": "Alan K <ack@modeswitch.org> (http://blog.modeswitch.org)",
|
"author": "Alan K <ack@modeswitch.org> (http://blog.modeswitch.org)",
|
||||||
"homepage": "http://filerjs.github.io/filer",
|
"homepage": "http://filerjs.github.io/filer",
|
||||||
"bugs": "https://github.com/filerjs/filer/issues",
|
"bugs": "https://github.com/filerjs/filer/issues",
|
||||||
|
|
Loading…
Reference in New Issue