-
Notifications
You must be signed in to change notification settings - Fork 82
feat: support scope hosting (options.?
)
#59
base: master
Are you sure you want to change the base?
Conversation
Wow just stumbled across this thanks to a tweet. Let's see if we can make this possible. Tricky, but why not. @webpack-contrib/admin-team this would be an awesome win for folks. We should try and help facilitate this change. |
so the main issue as far as I can tell is that the loader doesn't know what is being imported necessarily so we just have to proactively export as many legal identifiers as possible. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lib/modularize.js
const path = require('path')
function modularize (value, loader) {
if (typeof value !== 'object') {
loader.emitWarning(`⚠️ JSON Loader\n\n options.modules expects an {Object}. ${typeof value} found.\n`)
// Current `json-loader` behaviour, uncomplete here
return `module.exports = ${value}`
}
const name = path.basename(loader.resourcePath)
const keys = Object.keys(value)
const reserved = [ ...keywords ]
// Needs to 'throw' a warning here aswell in case a reserved keyword is found
const isReserved = (key) => reserved.includes(key)
const identifiers = keys.filter(isReserved).map(
(key) => `export const ${key} = ${name}.${key}`
)
return `const ${name} = ${value};
${identifiers.length ? identifiers.join('\n') : ''}
export default ${name}`
}
module.exports = modularize
index.js
const loaderUtils = require('loader-utils')
const modularize = require('./lib/modularize')
function loader (src) {
const loader = this
const options = loaderUtils.getOptions(loader)
...
// webpack >= v2.0.0 && flag (options.?)
if (loader.version >= 2 && options.modules) {
return modularize(value, loader)
}
...
}
options.?
)
|
currently with webpack3 (unlike rollup) you can't do
import {version} from './package.json';
this tries to fix that erring on the side of only including names for export when possible, it might make sense to be put behind a flag for nowsee proj4js/proj4js#261