Commit Graph

18044 Commits

Author SHA1 Message Date
Ben Newman
39a8591fb2 Upgrade reify npm package to version 0.4.3. 2016-11-26 13:30:33 -05:00
Ben Newman
bd0a7be6e2 Upgrade the meteor-babel npm package to version 0.14.2. 2016-11-26 13:29:33 -05:00
Ben Newman
c83094ae26 Tolerate module["import"] properties in findImportedModuleIdentifiers. 2016-11-26 13:07:27 -05:00
Ben Newman
b1df3ed0ed Merge pull request #8082 from Rhywden/patch-1
Fix for console output in PowerShell on Win10.
2016-11-21 19:06:14 -05:00
Rhywden
b029732a11 Fix for console output in PowerShell on Win10
See https://github.com/meteor/meteor/issues/6785

Basically, 
```
new Array(249).join('\b')
```
is not a good idea for a carriage return. Code has been tested with CMD, PowerShell and PowerShell in Legacy Mode and seems to solve the issue.
2016-11-21 20:34:11 +01:00
Ben Newman
3120b9324d Update modules test app to Meteor 1.4.2.3. 2016-11-18 11:01:47 -05:00
Ben Newman
f4abbccf45 Merge branch 'master' into devel 2016-11-17 16:23:04 -05:00
David Burles
00c6681ae4 remove inline eslint rules 2016-11-17 16:21:40 -05:00
David Burles
76f85113f1 remove validation test 2016-11-17 16:21:40 -05:00
David Burles
9ac8df351f remove url validation 2016-11-17 16:21:40 -05:00
David Burles
180ce53633 more concise export 2016-11-17 16:21:40 -05:00
David Burles
44d3181d1c code style changes for skel-full 2016-11-17 16:21:40 -05:00
Ben Newman
dc0aceaa1b Merge pull request #8044 from meteor/release-1.4.2.2
Release 1.4.2.2 (and 1.4.2.3)
2016-11-17 16:18:36 -05:00
Ben Newman
8d76fb01ff Bump package versions for the official 1.4.2.3 release. release/METEOR@1.4.2.3 2016-11-17 13:45:10 -05:00
Ben Newman
063d2513a3 History.md entry for 1.4.2.3. 2016-11-17 13:43:14 -05:00
Ben Newman
1b855047ae Limit InputFile#findControlFile to package source root directory.
This is an improvement that I noticed while investigating the
feasibility of fixing #8068.
2016-11-17 13:17:49 -05:00
Ben Newman
fc9c56a73e Improve InputFile#resolve. 2016-11-17 13:12:27 -05:00
Ben Newman
4cf06c37a6 Avoid global/method name ambiguity in InputFile#require. 2016-11-17 13:12:27 -05:00
Ben Newman
7b9ae5a6dd Bump package versions for 1.4.2.3-rc.0 release. release/METEOR@1.4.2.3-rc.0 2016-11-16 17:20:04 -05:00
David Burles
dc1bdc3a56 remove inline eslint rules 2016-11-16 11:22:45 -05:00
David Burles
851b6c5ae2 remove validation test 2016-11-16 11:22:45 -05:00
David Burles
311efd58cb remove url validation 2016-11-16 11:22:45 -05:00
David Burles
06fb2fbfb9 more concise export 2016-11-16 11:22:45 -05:00
David Burles
52b815cf33 code style changes for skel-full 2016-11-16 11:22:45 -05:00
Ben Newman
fda40742fe Bump package versions for the official 1.4.2.2 release. release/METEOR@1.4.2.2 2016-11-15 19:59:10 -05:00
Ben Newman
824e68872f Bump package versions for 1.4.2.2-rc.1 release. release/METEOR@1.4.2.2-rc.1 2016-11-15 09:40:47 -05:00
Ben Newman
2f47f8049c Bump $BUNDLE_VERSION to 4.7.1 before rebuilding dev bundle.
This build includes another attempt to include python.exe reliably in
the Windows dev bundle, thanks to https://github.com/winpython/winpython.
2016-11-15 09:20:23 -05:00
Ben Newman
24b0ea9fdd Bump compiler/linker/bundler salts to trigger fresh builds. 2016-11-14 21:18:03 -05:00
Ben Newman
5fc1cfa2e7 Bump package versions for 1.4.2.2-rc.0 release. release/METEOR@1.4.2.2-rc.0 2016-11-14 20:00:34 -05:00
Ben Newman
e4c7b0890c Watch all imported files in linked npm packages on server. 2016-11-14 14:25:22 -05:00
Ben Newman
3a54bb73f1 Merge pull request #8048 from classcraft/devel
Keep Hashes in URL when rewriting relative URLs.
2016-11-14 13:43:26 -05:00
Ben Newman
705a0c1709 Very minor stylistic tweaks to css-minifier tests. 2016-11-14 13:42:49 -05:00
Ben Newman
e3387599a2 Test lazy main modules and stray imports in modules test app. 2016-11-14 13:35:50 -05:00
Ben Newman
9f25353745 Bump package versions for 1.4.2.2-beta.2 release. release/METEOR@1.4.2.2-beta.2 2016-11-14 13:07:50 -05:00
Ben Newman
41713dacf7 Include meteor npm install in new app instructions.
Thanks to @ptica for this suggestion:
https://github.com/meteor/meteor/issues/8042#issuecomment-260277876
2016-11-14 12:51:00 -05:00
Ben Newman
2437f72cd7 Strip unnecessary imports for packages with no modules.
Note that even an empty package needs to define Package[name] = {}, so
that other packages can tell at runtime whether it's installed.

Fixes #7927.
2016-11-14 12:51:00 -05:00
Ben Newman
911f25bbf4 Allow lazy api.mainModule modules.
If you call api.mainModule(path, where, { lazy: true }), that main
module will not be evaluated until other code imports it at runtime, and
won't even be bundled if no other code imports it.

Closes #6132.
2016-11-14 12:51:00 -05:00
Ben Newman
8d1133743d Fix options.transformFilename behavior in files.cp_r.
The options.transformFilename function is only supposed to transform
target file names, not the names of source files to be copied.

This behavior was broken by c5809a4a1c
between Meteor 1.4.0.1 and 1.4.1. Thank goodness for `git bisect`!

The biggest symptom of this mistake was that `meteor create --package`
no longer created files based on the ~fs-name~.js and ~fs-name~-tests.js
template files.

This probably merits a 1.4.1.4 release in addition to 1.4.2.2.
2016-11-14 11:50:50 -05:00
Ben Newman
0eb714fe21 Bump $BUNDLE_VERSION to 4.7.0 before rebuilding dev bundle. 2016-11-14 11:50:21 -05:00
Ben Newman
4f4ab1b68f Ugrade Node to version 4.6.2. 2016-11-14 11:50:19 -05:00
Tom Coleman
7b8ef48db6 Changelog for 7968 2016-11-14 11:49:51 -05:00
Tom Coleman
47255dfaa2 Changelog entry for #7858 2016-11-14 11:49:50 -05:00
Tom Coleman
8d06a16994 Add changelog entry for #7807 2016-11-14 11:49:48 -05:00
Hugh Willson
e0b3b390a0 Updated test description to include the issue # being resolved (#5676). 2016-11-14 11:49:24 -05:00
Hugh Willson
307b246b6a Minor formatting adjustment to force CI rebuild. 2016-11-14 11:49:24 -05:00
Hugh Willson
ca50223f5e Preventing undefined callback from being passed into the forgotPassword Method, which in turn prevents unnecessary audit-argument-checks warnings. 2016-11-14 11:49:24 -05:00
Seba Kerckhof
212b3d0c22 Implement $min, $max, $currentDate modifiers 2016-11-14 11:49:24 -05:00
choyweston
067767d36e Add tests for URLs with #
First time building this type of test. Please review :)
2016-11-14 11:10:46 -05:00
choyweston
fd7632dde0 Add spaces before and after parenthesis 2016-11-14 11:02:10 -05:00
choyweston
311b0953aa Fixes cases where urls start with "#"
Another issue is URLs that are only a hash (this happens with inline SVG):

filter:url("#lightGreen")

In the current version of the codebase, gets rewritten to :

filter:url("")

The pull request also fixes this issue.
2016-11-13 22:45:41 -05:00