##// END OF EJS Templates
artifacts: expose a special auth-token based artifacts download urls....
artifacts: expose a special auth-token based artifacts download urls. This will allow sharing download to external locations used new generated artifact download tokens. This feature allows also serving downloads using secret urls with all the fancy logic of our auth tokens.

File last commit:

r3180:a5902294 default
r4003:09f31efc default
Show More
webpack.config.js
83 lines | 2.9 KiB | application/javascript | JavascriptLexer
/ webpack.config.js
frontend: use webpack instead of vulcanize
r3171 /* webpack.config.js */
require('style-loader');
require('css-loader');
var path = require('path');
const projectName = 'rhodecode-components';
let destinationDirectory = path.join(process.cwd(), 'rhodecode', 'public', 'js')
if (process.env.RC_STATIC_DIR) {
destinationDirectory = process.env.RC_STATIC_DIR;
}
js: use ES6 classes for polymer 2.x
r3172 // doing it this way because it seems that plugin via grunt does not pick up .babelrc
let babelRCOptions = {
"presets": [
["env", {
"targets": {
"browsers": ["last 2 versions"]
}
}]
],
"plugins": ["transform-object-rest-spread"]
}
frontend: use webpack instead of vulcanize
r3171 module.exports = {
// Tell Webpack which file kicks off our app.
entry: {
main: path.resolve(__dirname, 'rhodecode/public/js/src/components/index.js'),
},
output: {
filename: 'rhodecode-components.js',
path: path.resolve(destinationDirectory)
},
// Tell Webpack which directories to look in to resolve import statements.
// Normally Webpack will look in node_modules by default but since we’re overriding
resolve: {
modules: [
path.resolve(__dirname, 'node_modules'),
]
},
// These rules tell Webpack how to process different module types.
// Remember, *everything* is a module in Webpack. That includes
// CSS, and (thanks to our loader) HTML.
module: {
rules: [
{
js: move raw loader definition. Fixes odd bug in CE/EE injection.
r3180 test: /style-polymer.css/,
use: 'raw-loader'
},
{
frontend: use webpack instead of vulcanize
r3171 // If you see a file that ends in .html, send it to these loaders.
test: /\.html$/,
// This is an example of chained loaders in Webpack.
// Chained loaders run last to first. So it will run
// polymer-webpack-loader, and hand the output to
// babel-loader. This let's us transpile JS in our `<script>` elements.
use: [
js: use ES6 classes for polymer 2.x
r3172 {loader: 'babel-loader',
options: babelRCOptions},
frontend: use webpack instead of vulcanize
r3171 {loader: 'polymer-webpack-loader',
options: {
processStyleLinks: true,
}
}
],
},
{
// If you see a file that ends in .js, just send it to the babel-loader.
test: /\.js$/,
js: use ES6 classes for polymer 2.x
r3172 use: {loader: 'babel-loader', options: babelRCOptions}
frontend: use webpack instead of vulcanize
r3171 // Optionally exclude node_modules from transpilation except for polymer-webpack-loader:
// exclude: /node_modules\/(?!polymer-webpack-loader\/).*/
},
// this is required because of bug:
// https://github.com/webpack-contrib/polymer-webpack-loader/issues/49
{
test: /intl-messageformat.min.js/,
use: 'imports-loader?this=>window'
}
]
},
plugins: []
};