Skip to content

Commit fa2420a

Browse files
committed
Update to v3.0
1 parent 782d6a0 commit fa2420a

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

+218
-678
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
.idea/*
2-
node_modules
3-
private/build
1+
node_modules/

.meteor/.finished-upgraders

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ notices-for-facebook-graph-api-2
1515
1.4.1-add-shell-server-package
1616
1.4.3-split-account-service-packages
1717
1.5-add-dynamic-import-package
18+
1.7-split-underscore-from-meteor-base
19+
1.8.3-split-jquery-from-blaze

.meteor/.id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# - ensuring you don't accidentally deploy one app on top of another
55
# - providing package authors with aggregated statistics
66

7-
zivmvxxevpdg1xu8kc5
7+
vrq8x87hj0q8.wxgw7zk8r26o

.meteor/cordova-plugins

Whitespace-only changes.

.meteor/packages

Lines changed: 14 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,22 @@
11
# Meteor packages used by this project, one per line.
2+
# Check this file (and the other files in this directory) into your repository.
23
#
34
# 'meteor add' and 'meteor remove' will edit this file for you,
45
# but you can also edit it by hand.
56

6-
[email protected] # Packages every Meteor app needs to have
7-
[email protected] # Packages for a great mobile UX
8-
[email protected] # The database Meteor supports right now
9-
[email protected] # Compile .html files into Meteor Blaze views
10-
[email protected] # Helpful client-side library
11-
[email protected] # Meteor's client-side reactive programming library
7+
[email protected] # Packages every Meteor app needs to have
8+
[email protected] # Packages for a great mobile UX
9+
[email protected] # The database Meteor supports right now
1210

13-
[email protected] # ECMAScript 5 compatibility for older browsers.
14-
[email protected] # Enable ECMAScript2015+ syntax in app code
15-
16-
17-
18-
19-
20-
21-
22-
23-
24-
25-
11+
[email protected] # CSS minifier run for production mode
12+
[email protected] # JS minifier run for production mode
13+
[email protected] # ECMAScript 5 compatibility for older browsers
14+
[email protected] # Enable ECMAScript2015+ syntax in app code
15+
[email protected] # Enable TypeScript syntax in .ts and .tsx modules
16+
[email protected] # Server-side component of the `meteor shell` command
2617

27-
# Community Packages
2818

29-
ostrio:flow-router-extra
30-
ostrio:flow-router-meta
31-
32-
seba:minifiers-autoprefixer
33-
aldeed:collection2
34-
simple:dev-error-overlay
35-
practicalmeteor:chai
36-
practicalmeteor:mocha
37-
dispatch:mocha
19+
[email protected] # Define static page content in .html files
20+
zodern:melte # Meteor package to allow us to create files with the .svelte extension
21+
[email protected] # Update client in development without reloading the page
22+
zodern:types # Enable types from meteor/atmosphere packages

.meteor/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
METEOR@1.6.0.1
1+
METEOR@3.0.2

.meteor/versions

Lines changed: 74 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -1,112 +1,74 @@
1-
2-
3-
4-
5-
6-
7-
8-
9-
10-
11-
12-
13-
14-
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-
practicalmeteor:[email protected]_1
80-
practicalmeteor:[email protected]_2
81-
practicalmeteor:[email protected]_6
82-
practicalmeteor:[email protected]
83-
practicalmeteor:[email protected]_2
84-
85-
86-
87-
88-
89-
90-
91-
92-
93-
94-
95-
96-
97-
98-
99-
100-
101-
102-
103-
104-
105-
106-
107-
108-
109-
110-
111-
112-
1+
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+
13+
14+
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+

GUIDE.md

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

LICENSE.txt

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ $ meteor npm start
1111
```
1212

1313
Read through the [GUIDE.md](GUIDE.md) or checkout the [boilerplate online](http://meteor-boilerplate.surge.sh/) for more information.
14+

client/index.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

client/main.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
body {
2+
padding: 10px;
3+
font-family: sans-serif;
4+
}

client/main.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<head>
2+
<title>Meteor App</title>
3+
</head>
4+
5+
<body>
6+
<div id="app"></div>
7+
</body>
8+

client/main.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Meteor } from 'meteor/meteor';
2+
import App from '../imports/ui/App.svelte';
3+
4+
5+
Meteor.startup(() => {
6+
new App({
7+
target: document.getElementById('app')
8+
});
9+
});

imports/api/links.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { Mongo } from 'meteor/mongo';
2+
3+
export const LinksCollection = new Mongo.Collection('links');

imports/config/SecurityConfig.js

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

imports/loaders/FixturesLoader.js

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

0 commit comments

Comments
 (0)