Skip to content

Commit

Permalink
chore(bump): v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jyounce committed Feb 7, 2018
1 parent fc8f78a commit 34ccaa5
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 5 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,45 @@
# [5.0.0](https://github.com/rapid-build/rapid-build/compare/v4.0.1...v5.0.0) (2018-02-07)


Massive refactor to improve the build's error logging due to [gulp v4's strictness](https://git.io/vAfLQ).


### Bug Fixes

* **inline.jsHtmlImports build option:**
* should match import when "from" doesn't have a space after it ([9e26a0e](https://github.com/rapid-build/rapid-build/commit/9e26a0e))
* should match only ".html" imports when javascript is all on one line ([4dc718d](https://github.com/rapid-build/rapid-build/commit/4dc718d))
* should match template variable that's followed by "}" ([5f39670](https://github.com/rapid-build/rapid-build/commit/5f39670))


### Features

* **bump:** dep typescript to [v2.7.1](https://git.io/vNj53 'typescript v2.7 features') ([b1a1874](https://github.com/rapid-build/rapid-build/commit/b1a1874))
* **new cli options:**
* -v for outputting rapid-build's version number ([65f2f1f](https://github.com/rapid-build/rapid-build/commit/65f2f1f))
* --location for outputting where rapid-build is installed ([03b274e](https://github.com/rapid-build/rapid-build/commit/03b274e))
* **new build option inline.htmlAssets:**
* inline css, images and script files into your html (😎wicked cool)
* useful when creating [web components](https://www.webcomponents.org/)
* example:
```html
this: <div><script src="/scripts/main.js"></script><div>
to this: <div><script>console.log('Hello world!')</script><div>
```


### Minor Features

* **improved error logging:** for identifying build issues


### Breaking Changes

Only applies to people using typescript.
Bumped typescript from v2.6.2 to v2.7.1 ([breaking changes](https://git.io/vNj5Y 'typescript v2.7 breaking changes')).



## [4.0.1](https://github.com/rapid-build/rapid-build/compare/v4.0.0...v4.0.1) (2017-12-29)


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "rapid-build",
"version": "4.0.1",
"version": "5.0.0",
"build": {
"lib": "lib",
"tasksPrefix": "rb-"
Expand Down
2 changes: 1 addition & 1 deletion src/src/server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/src/server/package.json
@@ -1,6 +1,6 @@
{
"name": "server",
"version": "4.0.1",
"version": "5.0.0",
"description": "Application's default web server.",
"scripts": {
"start": "node start-server",
Expand Down
2 changes: 1 addition & 1 deletion test/app/package.json
@@ -1,5 +1,5 @@
{
"name": "rapid-build-test",
"version": "4.0.1",
"version": "5.0.0",
"description": "Application for testing rapid-build."
}

0 comments on commit 34ccaa5

Please sign in to comment.