Skip to content
This repository was archived by the owner on Jan 22, 2018. It is now read-only.

Commit e104107

Browse files
author
Kamil Kisiela
committed
demo initials
1 parent 297a835 commit e104107

File tree

12 files changed

+174
-2
lines changed

12 files changed

+174
-2
lines changed

.eslintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "./node_modules/mys-common-tools/.eslintrc",
33
"globals": {
4-
"inject": false
4+
"inject": false,
5+
"angular2now": false
56
}
67
}

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ bower_components
33
node_modules
44
coverage
55
tests
6+
demo
67
.gitignore
78
.travis.yml
89
karma.conf.js
9-
webpack.config.js
10+
webpack.config.js

demo/.meteor/.finished-upgraders

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file contains information which helps Meteor properly upgrade your
2+
# app when you run 'meteor update'. You should check it into version control
3+
# with your project.
4+
5+
notices-for-0.9.0
6+
notices-for-0.9.1
7+
0.9.4-platform-file
8+
notices-for-facebook-graph-api-2
9+
1.2.0-standard-minifiers-package
10+
1.2.0-meteor-platform-split
11+
1.2.0-cordova-changes
12+
1.2.0-breaking-changes

demo/.meteor/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
local

demo/.meteor/.id

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file contains a token that is unique to your project.
2+
# Check it into your repository along with the rest of this directory.
3+
# It can be used for purposes such as:
4+
# - ensuring you don't accidentally deploy one app on top of another
5+
# - providing package authors with aggregated statistics
6+
7+
fy74xsbb3je312muj19

demo/.meteor/packages

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Meteor packages used by this project, one per line.
2+
# Check this file (and the other files in this directory) into your repository.
3+
#
4+
# 'meteor add' and 'meteor remove' will edit this file for you,
5+
# but you can also edit it by hand.
6+
7+
meteor-base # Packages every Meteor app needs to have
8+
mobile-experience # Packages for a great mobile UX
9+
mongo # The database Meteor supports right now
10+
session # Client-side reactive dictionary for your app
11+
jquery # Helpful client-side library
12+
tracker # Meteor's client-side reactive programming library
13+
14+
standard-minifiers # JS/CSS minifiers run for production mode
15+
es5-shim # ECMAScript 5 compatibility for older browsers.
16+
17+
angular
18+
pbastowski:angular2-now
19+
formly:angular-formly-templates-material
20+
angularui:angular-ui-router

demo/.meteor/platforms

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
server
2+
browser

demo/.meteor/release

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

demo/.meteor/versions

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+
13+
14+
benjamine:[email protected]_1
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
50+
51+
52+
53+
54+
55+
56+
57+
58+
59+
60+
61+
62+
63+
64+
65+
66+
67+
68+
69+
70+
71+
72+
73+
74+
75+
76+
77+
78+
79+

demo/client/components/demo/demo.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div>
2+
<formly-form fields="vm.fields"></formly-form>
3+
</div>

0 commit comments

Comments
 (0)