Skip to content

Commit b90ca3b

Browse files
[TEX-15042] Publish my pagination-blaze package to atmosphere/packosphere
1 parent 41634c4 commit b90ca3b

File tree

3 files changed

+136
-4
lines changed

3 files changed

+136
-4
lines changed

.gitignore

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Textopian additions
2+
node_modules/
3+
.idea/
4+
5+
6+
7+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
8+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
9+
# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
10+
# https://raw.githubusercontent.com/github/gitignore/master/Global/JetBrains.gitignore
11+
12+
# User-specific stuff
13+
.idea/**/workspace.xml
14+
.idea/**/tasks.xml
15+
.idea/**/usage.statistics.xml
16+
.idea/**/dictionaries
17+
.idea/**/shelf
18+
19+
# Custom additions
20+
.idea/workspace.xml
21+
22+
23+
# AWS User-specific
24+
.idea/**/aws.xml
25+
26+
# Generated files
27+
.idea/**/contentModel.xml
28+
29+
# Sensitive or high-churn files
30+
.idea/**/dataSources/
31+
.idea/**/dataSources.ids
32+
.idea/**/dataSources.local.xml
33+
.idea/**/sqlDataSources.xml
34+
.idea/**/dynamic.xml
35+
.idea/**/uiDesigner.xml
36+
.idea/**/dbnavigator.xml
37+
38+
# Gradle
39+
.idea/**/gradle.xml
40+
.idea/**/libraries
41+
42+
# Gradle and Maven with auto-import
43+
# When using Gradle or Maven with auto-import, you should exclude module files,
44+
# since they will be recreated, and may cause churn. Uncomment if using
45+
# auto-import.
46+
# .idea/artifacts
47+
# .idea/compiler.xml
48+
# .idea/jarRepositories.xml
49+
# .idea/modules.xml
50+
# .idea/*.iml
51+
# .idea/modules
52+
# *.iml
53+
# *.ipr
54+
55+
# CMake
56+
cmake-build-*/
57+
58+
# Mongo Explorer plugin
59+
.idea/**/mongoSettings.xml
60+
61+
# File-based project format
62+
*.iws
63+
64+
# IntelliJ
65+
out/
66+
67+
# mpeltonen/sbt-idea plugin
68+
.idea_modules/
69+
70+
# JIRA plugin
71+
atlassian-ide-plugin.xml
72+
73+
# Cursive Clojure plugin
74+
.idea/replstate.xml
75+
76+
# Crashlytics plugin (for Android Studio and IntelliJ)
77+
com_crashlytics_export_strings.xml
78+
crashlytics.properties
79+
crashlytics-build.properties
80+
fabric.properties
81+
82+
# Editor-based Rest Client
83+
.idea/httpRequests
84+
85+
# Android studio 3.1+ serialized cache file
86+
.idea/caches/build_file_checksums.ser
87+
88+
89+
90+

package.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ Package.onUse(function (api) {
99
api.versionsFrom("2.16");
1010

1111
api.use([
12-
//"meteor-base",
1312
"underscore",
14-
"carlosalvidrez:pagination"
13+
"carlosalvidrez:pagination@0.0.1"
1514
]);
1615

1716
api.use([
@@ -20,12 +19,13 @@ Package.onUse(function (api) {
2019
], "client");
2120

2221
api.use([
23-
"templating",
24-
"blaze"
22+
"templating@1.4.4-alpha300.17",
23+
"blaze@3.0.0-rc300.2"
2524
], "client");
2625

2726
api.addFiles([
2827
"client/template.html",
2928
"client/template.js"
3029
], "client");
30+
3131
});

0 commit comments

Comments
 (0)