Move systemtags to common webpack
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
15dc1fa62f
commit
0357a30a58
15 changed files with 54 additions and 10 deletions
2
.gitattributes
vendored
2
.gitattributes
vendored
|
@ -7,6 +7,8 @@
|
|||
/apps/files_versions/js/files_versions.js.map binary
|
||||
/apps/oauth2/js/oauth2.js binary
|
||||
/apps/oauth2/js/oauth2.js.map binary
|
||||
/apps/systemtags/js/systemtags.js binary
|
||||
/apps/systemtags/js/systemtags.js.map binary
|
||||
/apps/twofactor_backupcodes/js/*.js binary
|
||||
/apps/twofactor_backupcodes/js/*.js.map binary
|
||||
/apps/updatenotification/js/updatenotification.js binary
|
||||
|
|
2
apps/systemtags/.l10nignore
Normal file
2
apps/systemtags/.l10nignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
#webpack bundled files
|
||||
js/systemtags.js
|
|
@ -34,8 +34,7 @@ $eventDispatcher->addListener(
|
|||
function() {
|
||||
// FIXME: no public API for these ?
|
||||
\OCP\Util::addScript('dist/systemtags');
|
||||
\OCP\Util::addScript('systemtags', 'merged');
|
||||
\OCP\Util::addStyle('systemtags', 'systemtagsfilelist');
|
||||
\OCP\Util::addScript('systemtags', 'systemtags');
|
||||
}
|
||||
);
|
||||
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
[
|
||||
"app.js",
|
||||
"systemtagsfilelist.js",
|
||||
"filesplugin.js",
|
||||
"systemtagsinfoview.js",
|
||||
"systemtagsinfoviewtoggleview.js"
|
||||
]
|
BIN
apps/systemtags/js/systemtags.js
Normal file
BIN
apps/systemtags/js/systemtags.js
Normal file
Binary file not shown.
BIN
apps/systemtags/js/systemtags.js.map
Normal file
BIN
apps/systemtags/js/systemtags.js.map
Normal file
Binary file not shown.
8
apps/systemtags/src/systemtags.js
Normal file
8
apps/systemtags/src/systemtags.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
import './app'
|
||||
import './systemtagsfilelist'
|
||||
import './filesplugin'
|
||||
import './systemtagsinfoview'
|
||||
import './systemtagsinfoviewtoggleview'
|
||||
import './css/systemtagsfilelist.scss'
|
||||
|
||||
window.OCA.SystemTags = OCA.SystemTags;
|
37
apps/systemtags/webpack.js
Normal file
37
apps/systemtags/webpack.js
Normal file
|
@ -0,0 +1,37 @@
|
|||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
entry: path.join(__dirname, 'src', 'systemtags.js'),
|
||||
output: {
|
||||
path: path.resolve(__dirname, './js'),
|
||||
publicPath: '/js/',
|
||||
filename: 'systemtags.js'
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.css$/,
|
||||
use: ['style-loader', 'css-loader']
|
||||
},
|
||||
{
|
||||
test: /\.scss$/,
|
||||
use: ['style-loader', 'css-loader', 'sass-loader']
|
||||
},
|
||||
{
|
||||
test: /\.js$/,
|
||||
loader: 'babel-loader',
|
||||
exclude: /node_modules/
|
||||
},
|
||||
{
|
||||
test: /\.(png|jpg|gif|svg)$/,
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
name: '[name].[ext]?[hash]'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['*', '.js']
|
||||
}
|
||||
};
|
|
@ -2,9 +2,12 @@ const core = require('./core/webpack');
|
|||
const files_trashbin = require('./apps/files_trashbin/webpack')
|
||||
const files_versions = require('./apps/files_versions/webpack');
|
||||
const oauth2 = require('./apps/oauth2/webpack')
|
||||
const systemtags = require('./apps/systemtags/webpack')
|
||||
|
||||
module.exports = [].concat(
|
||||
core,
|
||||
files_trashbin,
|
||||
files_versions,
|
||||
oauth2);
|
||||
oauth2,
|
||||
systemtags
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue