Skip to content

Commit 3c3b954

Browse files
committed
First pass of switching to ng-boilerplate framework
1 parent da4fb18 commit 3c3b954

File tree

139 files changed

+2160
-6166
lines changed

Some content is hidden

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

139 files changed

+2160
-6166
lines changed

.bowerrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"directory": "vendor",
3+
"json": "bower.json"
4+
}
5+

.gitignore

+6-115
Original file line numberDiff line numberDiff line change
@@ -1,115 +1,6 @@
1-
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
2-
[Bb]in/
3-
[Oo]bj/
4-
5-
# mstest test results
6-
TestResults
7-
8-
## Ignore Visual Studio temporary files, build results, and
9-
## files generated by popular Visual Studio add-ons.
10-
11-
# User-specific files
12-
*.suo
13-
*.user
14-
*.sln.docstates
15-
16-
# Build results
17-
[Dd]ebug/
18-
[Rr]elease/
19-
x64/
20-
*_i.c
21-
*_p.c
22-
*.ilk
23-
*.meta
24-
*.obj
25-
*.pch
26-
*.pdb
27-
*.pgc
28-
*.pgd
29-
*.rsp
30-
*.sbr
31-
*.tlb
32-
*.tli
33-
*.tlh
34-
*.tmp
35-
*.log
36-
*.vspscc
37-
*.vssscc
38-
.builds
39-
40-
# Visual C++ cache files
41-
ipch/
42-
*.aps
43-
*.ncb
44-
*.opensdf
45-
*.sdf
46-
47-
# Visual Studio profiler
48-
*.psess
49-
*.vsp
50-
*.vspx
51-
52-
# Guidance Automation Toolkit
53-
*.gpState
54-
55-
# ReSharper is a .NET coding add-in
56-
_ReSharper*
57-
58-
# NCrunch
59-
*.ncrunch*
60-
.*crunch*.local.xml
61-
62-
# Installshield output folder
63-
[Ee]xpress
64-
65-
# DocProject is a documentation generator add-in
66-
DocProject/buildhelp/
67-
DocProject/Help/*.HxT
68-
DocProject/Help/*.HxC
69-
DocProject/Help/*.hhc
70-
DocProject/Help/*.hhk
71-
DocProject/Help/*.hhp
72-
DocProject/Help/Html2
73-
DocProject/Help/html
74-
75-
# Click-Once directory
76-
publish
77-
78-
# Publish Web Output
79-
*.Publish.xml
80-
81-
# NuGet Packages Directory
82-
packages
83-
84-
# Windows Azure Build Output
85-
csx
86-
*.build.csdef
87-
88-
# Windows Store app package directory
89-
AppPackages/
90-
91-
# Others
92-
[Bb]in
93-
[Oo]bj
94-
sql
95-
TestResults
96-
[Tt]est[Rr]esult*
97-
*.Cache
98-
ClientBin
99-
[Ss]tyle[Cc]op.*
100-
~$*
101-
*.dbmdl
102-
Generated_Code #added for RIA/Silverlight projects
103-
104-
# Backup & report files from converting an old project file to a newer
105-
# Visual Studio version. Backup files are not needed, because we have git ;-)
106-
_UpgradeReport_Files/
107-
Backup*/
108-
UpgradeLog*.XML
109-
.idea
110-
/lib/xulrunner
111-
/src/ChorusDialogsInAngular.Tests
112-
/src/ChorusDialogsInAngular
113-
114-
/src/WindowsFormsApplication1
115-
__stylizer.htm
1+
*.sw*
2+
*~
3+
build/
4+
bin/
5+
node_modules/
6+
vendor/

.gitmodules

Whitespace-only changes.

.project

-23
This file was deleted.

.settings/.jsdtscope

-54
This file was deleted.

.settings/org.eclipse.wst.common.project.facet.core.xml

-4
This file was deleted.

.settings/org.eclipse.wst.jsdt.ui.superType.container

-1
This file was deleted.

.settings/org.eclipse.wst.jsdt.ui.superType.name

-1
This file was deleted.

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: node_js
2+
node_js:
3+
- "0.10"
4+
5+
before_script:
6+
- export DISPLAY=:99.0
7+
- sh -e /etc/init.d/xvfb start
8+
- npm install --quiet -g grunt-cli karma bower
9+
- bower install
10+
11+
script: grunt
12+

BloomLibrary.sln

-26
This file was deleted.

CHANGELOG.md

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
# 0.3.1 (2013-09-13)
2+
3+
## Features
4+
5+
* Page titles are now set via state objects ([33de8097]([email protected]:joshdmiller/ng-boilerplate/commit/33de8097))
6+
* Append pkg.version to JS and CSS ([90e1b71f]([email protected]:joshdmiller/ng-boilerplate/commit/90e1b71f))
7+
* Vendor CSS is copied and concatenated with the app's CSS ([dda8792c]([email protected]:joshdmiller/ng-boilerplate/commit/dda8792c))
8+
* Vendor assets are copied to the build too ([29502bff]([email protected]:joshdmiller/ng-boilerplate/commit/29502bff))
9+
* Treat JS in src/assets as assets (i.e. don't do anything with it) ([99b50751]([email protected]:joshdmiller/ng-boilerplate/commit/99b50751))
10+
* Added PhantomJS support ([89acf5f6]([email protected]:joshdmiller/ng-boilerplate/commit/89acf5f6))
11+
* Files for use only in testing are now configurable ([a04e663b]([email protected]:joshdmiller/ng-boilerplate/commit/a04e663b))
12+
13+
## Bug fixes
14+
15+
* CopyPasteException in index.html comments ([3a0596a7]([email protected]:joshdmiller/ng-boilerplate/commit/3a0596a7))
16+
* Fixed typos in the README ([5ae95393]([email protected]:joshdmiller/ng-boilerplate/commit/5ae95393)), ([8c362208]([email protected]:joshdmiller/ng-boilerplate/commit/8c362208)), and ([6b617282]([email protected]:joshdmiller/ng-boilerplate/commit/6b617282))
17+
* Vendor files were added to build twice ([09277b74]([email protected]:joshdmiller/ng-boilerplate/commit/09277b74))
18+
* IE7 Font Awesome stylesheet pointed nowhere ([515673b1]([email protected]:joshdmiller/ng-boilerplate/commit/515673b1))
19+
20+
# 0.3.0 (2013-06-25)
21+
22+
## Features
23+
### build
24+
25+
* split build into build+compile ([97fb290d](https://github.com/joshdmiller/ng-boilerplate/commits/97fb290d))
26+
* Moved config to separate file ([ff5d8b58](https://github.com/joshdmiller/ng-boilerplate/commits/ff5d8b58))
27+
* Added grunt-bump to ease releasing ([27312de1](https://github.com/joshdmiller/ng-boilerplate/commits/27312de1))
28+
* Added changelog generation ([328d25d2](https://github.com/joshdmiller/ng-boilerplate/commits/328d25d2))
29+
* karma config managed automatically ([3384b6fd](https://github.com/joshdmiller/ng-boilerplate/commits/3384b6fd))
30+
* CoffeeScript support ([0f308f2f](https://github.com/joshdmiller/ng-boilerplate/commits/0f308f2f))
31+
32+
### *
33+
34+
* switched to ui-router for state mgmt ([7bec0378](https://github.com/joshdmiller/ng-boilerplate/commits/7bec0378))
35+
36+
## Bug fixes
37+
### build
38+
39+
* Karma no longer hangs the watch (([f66cfcc6])(https://github.com/joshdmiller/ng-boilerplate/commits/f66cfcc6))
40+
41+
42+
43+
# 0.2.0 (2013-05-10)
44+
45+
## Features
46+
### build
47+
48+
* live reload added through grunt-watch ([653df741](https://github.com/joshdmiller/ng-boilerplate/commits/653df741))
49+
50+
* Add grunt ng-min for annotation ([9c529ccb](https://github.com/joshdmiller/ng-boilerplate/commits/9c529ccb))
51+
52+
### *
53+
54+
* far better Bower integration ([864c2656](https://github.com/joshdmiller/ng-boilerplate/commits/864c2656))
55+
56+
* included AngularUI `utils` to use uiRoute ([df08e4be](https://github.com/joshdmiller/ng-boilerplate/commits/df08e4be))
57+
58+
59+
60+
61+
62+
63+
# 0.1.0 (2013-03-11)
64+
65+
## Features
66+
### *
67+
68+
* Initial application structure ([7c149227](https://github.com/joshdmiller/ng-boilerplate/commits/7c149227))
69+
70+
* improved navigation styling and added home page tpl ([e1a655e0](https://github.com/joshdmiller/ng-boilerplate/commits/e1a655e0))
71+
72+
### app
73+
74+
* added current route indication to menu with appropriate unit test ([14d35da8](https://github.com/joshdmiller/ng-boilerplate/commits/14d35da8))
75+
76+
### index
77+
78+
* improved navbar style and added additional links ([a7c4504c](https://github.com/joshdmiller/ng-boilerplate/commits/a7c4504c))
79+
80+
### about
81+
82+
* Added an about page with some descriptive content ([290704ab](https://github.com/joshdmiller/ng-boilerplate/commits/290704ab))
83+
84+
* Added placeholders demo to about page ([89a06e9f](https://github.com/joshdmiller/ng-boilerplate/commits/89a06e9f))
85+
86+
### titleService
87+
88+
* dynamic title support) ([3db6ec2b](https://github.com/joshdmiller/ng-boilerplate/commits/3db6ec2b))
89+
90+
* suffix is now customizable ([9f8b4c73](https://github.com/joshdmiller/ng-boilerplate/commits/9f8b4c73))
91+
92+
### activeIfCurrentDirective
93+
94+
* created directory to test for current route ([0ac1f4b4](https://github.com/joshdmiller/ng-boilerplate/commits/0ac1f4b4))
95+
96+
### home
97+
98+
* replaced placeholder text with mrktg copy ([dcaf7237](https://github.com/joshdmiller/ng-boilerplate/commits/dcaf7237))
99+
100+
* added google +1 button ([98d3312b](https://github.com/joshdmiller/ng-boilerplate/commits/98d3312b))
101+
102+
103+
104+
## Bug fixes
105+
### build
106+
107+
* Removed unnecessary step from delta:unittest ([5ffbfd78](https://github.com/joshdmiller/ng-boilerplate/commits/5ffbfd78))
108+
109+
* delta tasks that concat must also uglify ([926983f8](https://github.com/joshdmiller/ng-boilerplate/commits/926983f8))
110+
111+
### test-config
112+
113+
* Change browser-name case, add browser list ([682b1ea4](https://github.com/joshdmiller/ng-boilerplate/commits/682b1ea4))
114+
115+
### home
116+
117+
* corrected typo in tweet button URL ([b9920eea](https://github.com/joshdmiller/ng-boilerplate/commits/b9920eea))
118+
119+
### testacular
120+
121+
* fixed typo in browser docstring ([11a60fa7](https://github.com/joshdmiller/ng-boilerplate/commits/11a60fa7))
122+
123+
124+
125+

0 commit comments

Comments
 (0)