mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 22:13:13 +00:00

* expose cli fix parent publication * translate and yarn.lock file * some css fix * expose search publication title filter * display nb items * trigger only from more than 3 character * do not display publication in to his parent list * trigger search publication on empty search
18 lines
454 B
JavaScript
18 lines
454 B
JavaScript
const _root = __dirname + '/../';
|
|
|
|
module.exports = {
|
|
|
|
// path helpers
|
|
_app: 'app',
|
|
minified: 'app.min.js',
|
|
dev: 'app.js',
|
|
eslintDir: _root + '.eslintrc',
|
|
distDir: _root + 'dist',
|
|
sourceDir: _root + 'src/',
|
|
testDir: _root + 'tests',
|
|
setupDir: _root + 'tests/setup/node.js',
|
|
karmaConf: _root + 'config/karma.conf.js',
|
|
// change this version when you change JS file for lazy loading
|
|
assetFileVersion: 106
|
|
};
|