Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit d23c8a6

Browse files
author
jkingoliver
committed
initial commit
0 parents  commit d23c8a6

Some content is hidden

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

58 files changed

+7573
-0
lines changed

.eslintignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
# If eslint goes into this dir it will read package.json as a config file
3+
# We either rename the package.json template, or we don't lint this dir
4+
generators/app/templates/
5+
coverage/

.eslintrc.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
env:
2+
node: true
3+
es6: true
4+
mocha: true
5+
6+
rules:
7+
strict: 2
8+
no-var: 2
9+
no-console: 0
10+
indent: ["error", "tab", { "SwitchCase": 1}]
11+
12+
extends: eslint:recommended
13+
14+
plugins: [ejs]

.gitconfig

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[commit]
2+
template = .gittemplate

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.DS_Store
2+
node_modules
3+
*.log
4+
.idea/**/*
5+
test/tmp
6+
.nyc_output
7+
coverage/
8+
.vscode/
9+
*.lock

.gittemplate

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Type(<scope>): <subject>
2+
# <body>
3+
# <footer>
4+
5+
# Type should be one of the following:
6+
# * BREAKING CHANGES (breaking change) [major release -- 1.x.x]
7+
# * feat (new feature) [minor release -- x.1.x]
8+
# * fix (bug fix) [patch release -- 0.0.x]
9+
# * docs (changes to documentation)
10+
# * style (formatting, missing semi colons, etc; no code change)
11+
# * refactor (refactoring production code)
12+
# * test (adding missing tests, refactoring tests; no production code change)
13+
# * chore (updating grunt tasks etc; no production code change)
14+
# Scope is just the scope of the change. Something like (admin) or (teacher).
15+
# Subject should use clear words and say what you did.
16+
# The body should go into detail about changes made.
17+
# The footer should contain any Github (or other tool) issue references or actions.
18+
19+
# For a full example of how to write a good commit message, check out
20+
# https://conventionalcommits.org/

.ibm-project

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"build-release-ready":false,"build-debug-ready":false,"devops":false,"deploy-image":"","chart-path":"","ibm-cluster":""}

.nycrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"check-coverage": true,
3+
"lines": 84,
4+
"statements": 84,
5+
"functions": 85,
6+
"branches": 58,
7+
"include": [
8+
"generators/**/*.js"
9+
],
10+
"exclude": []
11+
}

.travis.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: node_js
2+
node_js:
3+
- '8'
4+
before_install:
5+
- npm i -g markdown-to-html
6+
- wget https://github.com/github/hub/releases/download/v2.2.9/hub-linux-386-2.2.9.tgz
7+
- tar -xvzf hub-linux-386-2.2.9.tgz
8+
- export PATH=${PATH}:$PWD/hub-linux-386-2.2.9/bin/
9+
before_script:
10+
- git clone -b v2 [email protected]:bluemix-mobile-services/bmd-devops-pipeline.git
11+
- cd /tmp
12+
- git clone -b master https://github.com/ibm-developer/changelog-generator-slack-notification.git
13+
- npm install changelog-generator-slack-notification
14+
- cd -
15+
- sh ./bmd-devops-pipeline/scripts/setnpmrc.sh
16+
script: npm test && bash ./bmd-devops-pipeline/scripts/npm_version_upgrade.sh
17+
branches:
18+
only:
19+
- development
20+
- master
21+
notifications:
22+
slack:
23+
secure: u45ofCXqSu+yCwy/hkLlihbTiF21Rt4X8Gp4Up3pTaW7lK4gd/g0NTr0SW0lLRC4X2igCMoO5y8RXK4a48CDJOupdil2+774+Q3TQm5njMc7YZCFo4XtcYvBFaaxpu9OdvN9Q5KwAoCS0AgGyb+LeWZP+P3saMwYjLGnUdBTFDnFO1tLDePiyEZQneRqzlJ2rOXnfZVDg2y/VZCgPEpCuYMLF13+0pcY/T+yEzUyQThnq7u2dgkj6Nj5345w+wTixEK4aIAtHopYRTISNmaXJdIjBJ5VjN1A8IcPJKnrS4i52I09rbMfaQc928gw1jME2K127pwdIrgpiR7+qxrntoHAyYuOMUSV0JutBIdXgESckm318N377aORIc3/9angUM/pbcsvYhFiQtNv6ZeOzgl8wrSb6ZGkIZWMk1+yKaJ+hKNxh1B0wP6QltudLdjtlsxabIa1V07Wu/BDUN8qxjq9jLS3NOs4bcFlCbcLfYOOt84lKxL2ZtEdy9lw8dJsIHm70rVXGE1npaK74cNeGKZs1mhODKM6K71pF8JPkqynEH8VVNF4Yl8WHFS8SGSuDhVFJmpLJyz1rxcWFwduyWj0XOtUo4qRAiXcYHLouH42lJSvdQq7tT72g7OXumHO/ob6fccuz3jbY1hR1HfKAkX17DTlehOafQ6okp7nV8M=

CHANGELOG.md

+143
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
<a name="0.3.7"></a>
6+
## [0.3.7](https://github.ibm.com/arf/generator-web/compare/v0.3.6...v0.3.7) (2018-01-18)
7+
8+
9+
10+
<a name="0.3.6"></a>
11+
## [0.3.6](https://github.ibm.com/arf/generator-web/compare/v0.3.5...v0.3.6) (2018-01-12)
12+
13+
14+
### Bug Fixes
15+
16+
* **webpack:** add host attribute 0.0.0.0 to webdev-server ([38bf5ed](https://github.ibm.com/arf/generator-web/commit/38bf5ed))
17+
18+
19+
20+
<a name="0.3.5"></a>
21+
## [0.3.5](https://github.ibm.com/arf/generator-web/compare/v0.3.4...v0.3.5) (2017-12-18)
22+
23+
24+
### Bug Fixes
25+
26+
* fixed a bug with Python flask template ([23ce42b](https://github.ibm.com/arf/generator-web/commit/23ce42b))
27+
28+
29+
30+
<a name="0.3.4"></a>
31+
## [0.3.4](https://github.ibm.com/arf/generator-web/compare/v0.3.3...v0.3.4) (2017-12-08)
32+
33+
34+
### Bug Fixes
35+
36+
* added files for new splash page for webbasic ([a9d1818](https://github.ibm.com/arf/generator-web/commit/a9d1818))
37+
38+
39+
40+
<a name="0.3.3"></a>
41+
## [0.3.3](https://github.ibm.com/arf/generator-web/compare/v0.3.2...v0.3.3) (2017-12-01)
42+
43+
44+
### Bug Fixes
45+
46+
* added files for new splash page for webbasic ([aa2f6e2](https://github.ibm.com/arf/generator-web/commit/aa2f6e2)), closes [arf/planning-node#370](https://github.ibm.com/arf/planning-node/issues/370)
47+
48+
49+
50+
<a name="0.3.2"></a>
51+
## [0.3.2](https://github.ibm.com/arf/generator-web/compare/v0.3.1...v0.3.2) (2017-11-30)
52+
53+
54+
### Bug Fixes
55+
56+
* Dockerfile build script ([bb9f2d3](https://github.ibm.com/arf/generator-web/commit/bb9f2d3))
57+
58+
59+
60+
<a name="0.3.1"></a>
61+
## [0.3.1](https://github.ibm.com/arf/generator-web/compare/v0.3.0...v0.3.1) (2017-11-29)
62+
63+
64+
### Bug Fixes
65+
66+
* add correct client reload script when running npm run dev ([26b8188](https://github.ibm.com/arf/generator-web/commit/26b8188))
67+
68+
69+
70+
<a name="0.3.0"></a>
71+
# [0.3.0](https://github.ibm.com/arf/generator-web/compare/v0.2.3...v0.3.0) (2017-11-29)
72+
73+
74+
### Features
75+
76+
* adding angular framework ([238871c](https://github.ibm.com/arf/generator-web/commit/238871c)), closes [arf/planning-node#57](https://github.ibm.com/arf/planning-node/issues/57)
77+
78+
79+
80+
<a name="0.2.3"></a>
81+
## [0.2.3](https://github.ibm.com/arf/generator-web/compare/v0.2.2...v0.2.3) (2017-11-21)
82+
83+
84+
### Bug Fixes
85+
86+
* react package.json ([9e5aea9](https://github.ibm.com/arf/generator-web/commit/9e5aea9))
87+
88+
89+
90+
<a name="0.2.2"></a>
91+
## [0.2.2](https://github.ibm.com/arf/generator-web/compare/v0.2.1...v0.2.2) (2017-11-21)
92+
93+
94+
### Bug Fixes
95+
96+
* build script ([0eadb87](https://github.ibm.com/arf/generator-web/commit/0eadb87))
97+
98+
99+
100+
<a name="0.2.1"></a>
101+
## [0.2.1](https://github.ibm.com/arf/generator-web/compare/v0.2.0...v0.2.1) (2017-11-21)
102+
103+
104+
### Bug Fixes
105+
106+
* missing procfile ([a232766](https://github.ibm.com/arf/generator-web/commit/a232766))
107+
108+
109+
110+
<a name="0.2.0"></a>
111+
# [0.2.0](https://github.ibm.com/arf/generator-web/compare/v0.1.2...v0.2.0) (2017-11-16)
112+
113+
114+
### Features
115+
116+
* concurrent server and client hot reload for react ([f279ee5](https://github.ibm.com/arf/generator-web/commit/f279ee5))
117+
118+
119+
120+
<a name="0.1.2"></a>
121+
## [0.1.2](https://github.ibm.com/arf/generator-web/compare/v0.1.1...v0.1.2) (2017-11-14)
122+
123+
124+
### Bug Fixes
125+
126+
* updated build process and clarified in README ([c0111fd](https://github.ibm.com/arf/generator-web/commit/c0111fd))
127+
128+
129+
130+
<a name="0.1.1"></a>
131+
## [0.1.1](https://github.ibm.com/arf/generator-web/compare/v0.1.0...v0.1.1) (2017-11-02)
132+
133+
### Bug Fixes
134+
135+
* Rebranding ([9de2f03](https://github.ibm.com/arf/generator-web/commit/9de2f03f3a158c2ad42e8904f82409e2588e71c3))
136+
137+
<a name="0.1.0"></a>
138+
# [0.1.0](https://github.ibm.com/arf/generator-web/compare/v0.0.36...v0.1.0) (2017-11-01)
139+
140+
141+
### Features
142+
143+
* added standard version ([af28e99](https://github.ibm.com/arf/generator-web/commit/af28e99))

0 commit comments

Comments
 (0)