-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from frozeman/v1.0
## v1.0 - Update codebase to ES6; - Overall codebase refactoring and linting; - __Breaking__: Remove spinner, `simple-spinner` dependency, and `-hide, --hideSpinner` command line options; - Support for modern (ES6) and legacy (ES5) builds (legacy build is used by default); - Support for Meteor's `<meteor-bundled-js/>` and `<meteor-bundled-css/>`; - Support for `body.html` and `blaze-html-templates` (see updated readme); - Support for `{{url-to-meteor-bundled-css}}` placeholder, which can be used in `<link rel="preload">`; - __Breaking__: `--usebuild` option now accepts `<path>` to the build; - Update NPM dependencies; - Use `fs-extra` module to move files around; - Check that `Meteor` and `Meteor.disconnect` exist in global space; - If `--url` option is not passed create dummy `sockjs/info` to avoid connect DDP exceptions; - Closing: #53, #40; - Solving: #61, #57, #55, #42, #18; - Taking into account: #59, #35;
- Loading branch information
Showing
10 changed files
with
590 additions
and
430 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
print(...args) { | ||
console.info.apply(console, args); | ||
} | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,2 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
{{> css}} | ||
{{> scripts}} | ||
{{> head}} | ||
</head> | ||
<body> | ||
</body> | ||
</html> | ||
<html><head>{{> head}}</head><body>{{> body}}</body></html> |
Oops, something went wrong.