-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node module #706
Node module #706
Conversation
@javan Just briefly looked at your changes and it's looking really good 👍 💯 Happy to help with docs if you like or perhaps we can do it in separate PR i.e. move all README contents into For |
Mostly so we're not locked in to exporting a single value
@gauravtiwari, I added new documentation and touched up some of the existing bits in 34142b1. Let me know if I missed anything critical. |
@javan Sure thing, reviewing now. The API looks really nice though 💯 We haven't published the package to npm yet right? |
Right. Not published yet. Will eventually be published as a scoped package: Side note: We should gut the README as soon as this is merged. |
@javan Cool 👍 Yepp, will do. Thinking we create a |
We can discuss more in #645, but basically I think we should remove everything that's webpack-not-webpacker related. |
@gauravtiwari, can you please try this out in a real app? You can do: # Gemfile
gem 'webpacker', github: 'rails/webpacker', branch: 'node-module' // package.json
"dependencies": {
"webpacker": "rails/webpacker#node-module"
} and then |
@javan Yepp doing that now. BTW, is code like this intentional i.e. const { extensions } = config
if (!extensions.length) {
throw new Error('You must configure at least one extension to compile in webpacker.yml')
}
return extensions.length === 1 ? `**/${extensions[0]}` : `**/*{${extensions.join(',')}}` I corrected a few and if you don't mind I can push :) |
Hmm, not seeing that locally or on github webpacker/package/environment.js Lines 33 to 39 in c4bf1c2
|
Oops sorry I meant |
I prefer the spacing as-is since it's a relatively short block of code. And the linter isn't complaining. 😬 |
package/index.js
Outdated
const { existsSync } = require('fs') | ||
|
||
function createEnvironment() { | ||
const path = `./environments/${process.env.NODE_ENV}` |
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.
@javan Missing file extension here
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.
Not needed. I removed them all throughout the codebase. Just like Ruby, Node's require
doesn't need an extension.
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.
but existsSync
won't work, it requires a path
const path = resolve(__dirname, `./environments/${process.env.NODE_ENV}.js`)
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.
const constructor = existsSync(path) ? require(path) : Environment
Will always evaluate to false and return default config
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.
D'oh, right you are. Great catch! Fixed in df21fae
"description": "Webpacker makes it easy to use the JavaScript preprocessor and bundler [Webpack](https://webpack.github.io) to manage application-like JavaScript in Rails. It coexists with the asset pipeline, as the purpose is only to use Webpack for app-like JavaScript, not images, css, or even JavaScript Sprinkles (that all continues to live in app/assets).", | ||
"main": "index.js", | ||
"main": "package/index.js", |
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.
Need to add files we are distributing from NPM so the package doesn't include ruby files.
"files": [
"package"
]
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.
👍 e0ba006
Great, will take a final look now and we can merge |
b7d8aea
to
3cd2e49
Compare
README.md
Outdated
test: /.(ts|tsx)$/, | ||
loader: 'ts-loader' | ||
}) | ||
``` |
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.
I removed this step because we're adding all loaders by default now, but didn't notice the tsx
extension part. Maybe we should just add it to the loader?
webpacker/package/loaders/typescript.js
Lines 1 to 4 in 3cd2e49
module.exports = { | |
test: /\.ts$/, | |
loader: 'ts-loader' | |
} |
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.
@javan Oh yes, totally forgot. Yes, makes sense 👍
README.md
Outdated
} | ||
// Update an option directly | ||
const vueLoader = environment.loaders.get('vue') | ||
vueLoader.test = /\.vue(\.erb)?$/ |
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.
Should we make this the default test
for the vue loader?
webpacker/package/loaders/vue.js
Line 7 in 3cd2e49
test: /\.vue$/, |
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.
Yeah we can do that but I guess then we would need to update all loaders to support .erb
(if we want that out of the box)?
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.
We already do for ~half of the loaders. Might as well for all?
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.
Sounds good 👍 We also received this through many PR's and issues so makes sense 💯
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.
Cool. Want to make that change (and also add tsx
to the typescript loader)?
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.
on it 👍
All done 👍 added an small change to dev server to add overlay for errors - this will basically show a screen with error instead of blank screen. |
README.md
Outdated
@@ -90,7 +90,7 @@ in which case you may not even need the asset pipeline. This is mostly relevant | |||
|
|||
## Features | |||
|
|||
* [Webpack 2](https://webpack.js.org/) | |||
* [Webpack 2 and 3](https://webpack.js.org/) |
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.
Maybe drop the 2
? We technically don't support it now:
Line 37 in b4ded38
"webpack": "^3.5.5", |
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.
Hmm yeah, although the config we have will work with both versions but makes sense to just say 3.
Also, we should add that module concatenation plugin? https://github.com/webpack/webpack/tree/master/examples/scope-hoisting#webpackconfigjs
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.
Will push an update now 👍
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.
The config may work, but you won't be able to install v2 if you have webpacker as a dependency in package.json
…dule * 'node-module' of github.com:rails/webpacker: Fix require for scoped package
Moves the bulk of our webpack config into a node module instead of copying it all to apps on
webpacker:install
. There are only four files copied toconfig/webpack/
now:1
config/webpack/environment.js
for setting up base configuration:2-4
config/webpack/{development,production,test}.js
, which build offenvironment.js
and are identical to start:TODO
Before merging
After merging
$ npm version major
$ npm publish --access public
Fixes #649
Closes #264