Will this release have implications on deployment, specifically meteor up? Can we already deploy with this if we want to?
I did not encounter any problems with mupx
yet but still early
Can you please just do an auto-update?
I donât really mind having an extra replica of meteor on my server or localhost to recompile/update my running app.
Some external âmimiMeteorUpdateControllerââŚ
No, please donât. People have valid reason to pending an update.
Whatâs the correct .babelrc to emulate what meteor does? I currently have
{
"presets": [
"es2015",
"react",
"meteor"
]
}
where âmeteorâ refers to babel-preset-meteor. Is this correct?
The context of this question is that Iâm running unit tests without using meteor test
(see this post) and want mocha to compile js in the same way as meteor when I run mocha ./tests/unit-tests --compilers js:babel-register
.
Hi @rdickert! Looking forward to catching up at Meteor Camp NYC in a few days
I believe the closest you can come without using meteor-babel/register
(which is similar to babel-register
, though the setup is somewhat annoying) would be to put the following in your .babelrc
file:
{
"presets": ["meteor", "react"],
"plugins": ["transform-es2015-modules-commonjs"]
}
This works because the babel-preset-meteor
package has everything that babel-preset-es2015
has, except for the CommonJS modules transform.
The vanilla babel-plugin-transform-es2015-modules-commonjs
will force your modules to declare themselves "use strict"
, which may be a problem if your Meteor code assigns to global variables.
Note that this .babelrc
wonât allow you to use nested import
declarations. For that you should probably use meteor-babel/register
.
Also, for what itâs worth, meteor test
will be much faster in Meteor 1.4, thanks to this commit.
@benjamn me too!
Thanks for the suggestion. Iâve tried that .babelrc setup and it seems good. Thereâs one other quirk I came across, which is that
import NavBar from '/imports/ui/components/NavBar';
works in meteor but not when the same code is imported by a test. A relative path works for both:
import NavBar from '../components/NavBar';
Iâll check out meteor-babel/register
if I have the time, but this is still good. On the faster reload for 1.4, it probably wonât change my approach for unit tests, but it sounds like an awesome improvement for integration tests and general development. Great work here â really happy where this is going.
Iâm still getting bcrypt errors @benjamn . I know you already updated some bcrypt dependencies but it doesnât look like this fixed the issue for me on Windows.
@AndreasGalster The npm-bcrypt
package was last published using Meteor 1.3.4.1, so in order to use it with Meteor 1.4 youâre going to need a compiler toolchain.
Please follow the instructions for installing the Windows build tools here, specifically
- On Windows:
- Visual C++ Build Environment:
- Option 1: Install Visual C++ Build Tools using the Default Install option.
- Visual C++ Build Environment:
You shouldnât need to install Python (since itâs included in the Windows dev_bundle
) or set any variables (since meteor npm
does that for you).
It would be nice if this wasnât necessary, but once youâve installed a working compiler toolchain, you shouldnât have to think about it again.
So does this mean we should just simply follow your instructions if we want to use beta builds or once out of beta we will have the right dependencies to get it running even without setting that up?
You should follow the instructions regardless.
Once Meteor package authors whose packages contain binary npm dependencies start publishing their packages using Meteor 1.4, you wonât always need to have a compiler to use those packages with Meteor 1.4, but that wonât start happening until 1.4 is out, and in some cases may not happen for a long time after that, e.g. if the package author has abandoned the package and never publishes it again.
It looks like running meteor npm XXX still returns node 0.10 on 1.4-beta.6
This is the reason why, but itâs not a great reason. I wonder if we should update the version that meteor npm
and meteor node
refer to whenever you successfully do meteor update --relase ...
, even if the release is experimental.
Thatâd be cool, as long as it only updates it for that specific project. Have a lot of meteor projects with all sorts of different versions on my machine
The way to fix it in the meantime is to update the ~/.meteor/meteor
symbolic link:
% cd ~/.meteor
% ls -l meteor
lrwxr-xr-x 1 ben staff 57 Jun 29 16:54 meteor@ -> packages/meteor-tool/1.4.0-beta.6/mt-os.osx.x86_64/meteor
% mv meteor old-meteor
% ln -s packages/meteor-tool/1.4.0-beta.6/mt-os.osx.x86_64/meteor ./
% meteor npm version
{ npm: '3.10.2',
ares: '1.10.1-DEV',
http_parser: '2.5.2',
icu: '56.1',
modules: '46',
node: '4.4.7',
openssl: '1.0.2h',
uv: '1.8.0',
v8: '4.5.103.36',
zlib: '1.2.8' }
Note that you need to have done meteor update --release 1.4-beta.6
in order for the ~/.meteor/packages/meteor-tool/1.4.0-beta.6/
directory to exist.
Iâm curious, Iâve seen a lot of people complaining about this, but I havenât experienced it. The absolute import works fine in my tests. Perhaps it is because I currently only use unit tests? Or is it because I run my tests with Meteor using
$meteor test --once --driver-package practicalmeteor:mocha
and perhaps others are bypassing Meteor?
That is the way I assumed it worked initially.
I updated to a beta with --release to test node 4.x with a project, even though I knew it was experimental, so I got quite confused by the node v. 0.10.
A question about the current solution to npm and node versions:
When 1.4 is released and node 4.x becomes the new default, is this scenario then possible?:
- Update a project with
meteor update
to meteor 1.4 and node 4.x - Choose to downgrade again with
meteor update --release 1.3.4.1
. - End up with a broken meteor 1.3 and node 4.x combination
Sorry if this is stupid question, but since I have read that it will be easier to update node versions with meteor now will it be possible to deploy node 6 with meteor 1.4 or will we have to wait for new a version of meteor that supports it?
It looks like itâs a 1.5 feat: