Skip to content
This repository was archived by the owner on Aug 20, 2018. It is now read-only.

feat: support scope hosting (options.?) #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

calvinmetcalf
Copy link

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 now

see proj4js/proj4js#261

@jsf-clabot
Copy link

jsf-clabot commented Aug 17, 2017

CLA assistant check
All committers have signed the CLA.

@TheLarkInn
Copy link

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.

@calvinmetcalf
Copy link
Author

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.

Copy link
Member

@michael-ciniawsky michael-ciniawsky left a 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)
  }
  ...
}

@michael-ciniawsky
Copy link
Member

michael-ciniawsky commented Sep 7, 2017

json-loader still needs to support webpack =< v1.0.0 in the current semver range and I'm uncertain if modularization should be the default for the loader. For config files mandatory to be JSON (e.g package.json) this makes sense, but in case it is up to the user to choose the format => just use a .js file instead. This only works with webpack >=v2.0.0 (ES2015 Module Support && Tree Shaking) and therefore needs to be guarded against lower versions of webpack or released as 🏷 Major. Maybe this is even better implemented as a separate loader e.g (package-json-loader || config-loader...) instead. Using export default {json} is a breaking change nevertheless => require('file.json') => require('file.json').default

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants