Skip to content

Commit 755a46d

Browse files
committed
Shuffle and rename. See CHANGELOG.md
1 parent b50d5a9 commit 755a46d

File tree

7 files changed

+495
-474
lines changed

7 files changed

+495
-474
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<a name="0.1.0"></a>
2+
# 0.1.0 (2016-01-19)
3+
4+
### Bug Fixes
5+
6+
* .npmignore now excluded from the npm package
7+
8+
### Features
9+
10+
* Added this CHANGELOG.md
11+
* Reversed import order in core so that the real code is at the top and status codes at the bottom
12+
* Output file renamed "web-api.js"
13+
14+
### BREAKING CHANGES
15+
16+
* Output file renamed from "dev.js" to "web-api.js"
17+
18+
<a name="0.0.4"></a>
19+
# 0.0.4 (2016-01-18)
20+
21+
First draft

core.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from './http-status-codes';
21
export * from './in-memory-backend.service';
2+
export * from './http-status-codes';

core.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function build(done) {
9393

9494
builder
9595
// start building with the root module file in the folder with the intended module name
96-
.bundle('a2-in-memory-web-api/core', 'dev.js')
96+
.bundle('a2-in-memory-web-api/core', 'web-api.js')
9797
.then(function(output) {
9898
console.log('Build complete');
9999
})

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "a2-in-memory-web-api",
3-
"version": "0.0.4",
3+
"version": "0.1.0",
44
"description": "An in-memory web api for demos and tests",
55
"scripts": {
66
"tsc": "tsc",

src/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1+
export * from './in-memory-backend.service';
12
export * from './http-status-codes';
2-
export * from './in-memory-backend.service';

0 commit comments

Comments
 (0)