forked from mquandalle/meteor-jade
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Keeping project in sync with the head origin... #2
Open
AlbinoGeek
wants to merge
27
commits into
dalgard:master
Choose a base branch
from
mquandalle:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deleted check for if name = "content"
Explicit targets when including packages and files (`server`, `client`, etc). Resolves #168 and possibly #169 Minimum Meteor version bumped from `0.9.0` to `1.2.0.1`. Meteor 1.2 has breaking changes so this is not compatible with versions lower than this. I'm not sure how backwards compatibility should be handled. Updated `versions.json` files with versions required by Meteor 1.2 Removed hardcoded versions in the build plugin. Rationale is to use the versions used by Meteor 1.2 or versions set by the developer. Added `underscore` and `jquery` to the tests as these are no longer global. Bumped package version up to `0.4.4`
Meteor 1.2 Compatibility
These versions numbers were removed in 236b20e and caused an error during publication: $ meteor publish => Errors while publishing: While publishing the package: error: You must specify a version constraint for package blaze error: You must specify a version constraint for package underscore error: You must specify a version constraint for package htmljs error: You must specify a version constraint for package minifiers error: You must specify a version constraint for package spacebars-compiler Note that the dependency version that will actually get includes will be higher that the one we specified thanks to the Meteor constraints solver.
Accept "content" as a valid template name
Highlight that jade impl. is not 100%
Update README.md
The implementation differs from #158 on caching management. In this commit we simply sub-class the `CachingCompiler` instead of re-implementing the caching logic ourselves. This commit also start the transition to ES6 using the Meteor 'ecmascript' package.
We also change the Meteor packages testing command to remove the `--test-app-path` option that seems to no longer work as before on Meteor 1.2, and now `meteor test-packages packages/*` seems enough. See commit 6da3e81 for complete history.
This badge was one of the winner of the Meteor 2015 hackathon, and it is quite cool. So let’s use it!
Update readme with `=` syntax description
One of the main advantage of the new build plugin API introduced in Meteor 1.2 was the possibility to define "incremental compilers" that relies on caching to accelerate the build process. Unfortunately 7734099 didn't implement this new caching mechanism correctly, this commit should make it work. The documentation for CachingCompiler is available at: https://github.com/meteor/meteor/tree/devel/packages/caching-compiler
Meteor now exports the functions that generate the runtime code for templates and the page body, so let's use that so that we don't break in case these functions change in the future.
We need to recompile a file in the case is name changed (but not necessarly its content) because some features of meteor-jade depends on the file name, for instance the unwraped templates. Fixes #199
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
You have to keep your project in sync (mergable) with the base, if you want it to be merged back.
Some of these changes have to be manually edited, I opened this PR from the webUI so could not.
You can deal with the collisions manually, with
git
, or gitgui for Windows.