Skip to content

Commit 68bd9df

Browse files
feat(build): Updated build pipeline for modules
1 parent e098d3e commit 68bd9df

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+4039
-2616
lines changed

.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,63 @@
1+
# Logs
2+
logs
3+
*.log
4+
.nyc
5+
.nyc_output
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
18+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
19+
.grunt
20+
21+
# Compiled binary addons (http://nodejs.org/api/addons.html)
22+
build/Release
23+
24+
# Users Environment Variables
25+
.lock-wscript
26+
27+
# OS generated files #
28+
.DS_Store
29+
ehthumbs.db
30+
Icon?
31+
Thumbs.db
32+
33+
# Node Files #
34+
node_modules
35+
/bower_components
36+
37+
# Typing TSD #
38+
/src/typings/tsd/
39+
/typings/
40+
/tsd_typings/
41+
42+
# Dist #
43+
/dist
44+
/public/__build__/
45+
/src/*/__build__/
46+
__build__/**
47+
.webpack.json
48+
49+
#doc
50+
/doc
51+
52+
# IDE #
53+
.idea/
54+
*.swp
55+
!/typings/custom.d.ts
56+
57+
# Build Artifacts #
58+
release
159
/node_modules/
260
lerna-debug.log
361
/lib/
62+
ngfactory
63+
output
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
```
66
npm install
7-
npm run typings
7+
npm run bootstrap
88
```
99

1010
### Testing
@@ -20,8 +20,8 @@ npm test
2020
* Please rebase your branch against the current master
2121
* Run ```npm install``` to make sure your development dependencies are up-to-date
2222
* Please ensure the test suite passes before submitting a PR
23-
* If you've added new functionality, **please** include tests which validate its behaviour
24-
* Make reference to possible [issues](https://github.com/ngrx/store/issues) on PR comment
23+
* If you've added new functionality, **please** include tests which validate its behavior
24+
* Make reference to possible [issues](https://github.com/ngrx/platform/issues) on PR comment
2525

2626
## Submitting bug reports
2727

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Brandon Roberts, Mike Ryan, Rob Wormald
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

circle.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
machine:
2+
node:
3+
version: 6.9.5
4+
test:
5+
override:
6+
- npm install -g yarn
7+
- yarn run bootstrap
8+
- yarn run build

karma.conf.js

Lines changed: 0 additions & 59 deletions
This file was deleted.

lerna.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
2-
"lerna": "2.0.0-beta.37",
2+
"lerna": "2.0.0-beta.38",
33
"packages": [
44
"modules/*"
55
],
6-
"version": "4.0.0-alpha.0"
6+
"version": "4.0.0-alpha.0",
7+
"npmClient": "yarn"
78
}

modules/core/.gitignore

Lines changed: 0 additions & 56 deletions
This file was deleted.

modules/core/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Brandon Roberts, Mike Ryan, Rob Wormald
3+
Copyright (c) 2017 Brandon Roberts, Mike Ryan, Rob Wormald
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

modules/core/karma.conf.js

Lines changed: 0 additions & 82 deletions
This file was deleted.

0 commit comments

Comments
 (0)