Skip to content

Commit c750af6

Browse files
committed
cleaned - bump
1 parent ed0dbe2 commit c750af6

9 files changed

+52
-487
lines changed

.gitignore

+7-253
Original file line numberDiff line numberDiff line change
@@ -1,254 +1,8 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
4-
5-
node_modules/
6-
hooks/
7-
references.d.ts
8-
tsconfig.json
9-
10-
# User-specific files
11-
*.suo
12-
*.user
13-
*.userosscache
14-
*.sln.docstates
15-
.sln
16-
*.sln
17-
.DS_Store
18-
*.DS_Store
19-
20-
# User-specific files (MonoDevelop/Xamarin Studio)
21-
*.userprefs
22-
23-
# Build results
24-
[Dd]ebug/
25-
[Dd]ebugPublic/
26-
[Rr]elease/
27-
[Rr]eleases/
28-
x64/
29-
x86/
30-
bld/
31-
[Bb]in/
32-
[Oo]bj/
33-
34-
# VS Code
35-
.vscode/
36-
37-
# Visual Studio 2015 cache/options directory
38-
.vs/
39-
# Uncomment if you have tasks that create the project's static files in wwwroot
40-
#wwwroot/
41-
42-
# MSTest test Results
43-
[Tt]est[Rr]esult*/
44-
[Bb]uild[Ll]og.*
45-
46-
# NUNIT
47-
*.VisualState.xml
48-
TestResult.xml
49-
50-
# Build Results of an ATL Project
51-
[Dd]ebugPS/
52-
[Rr]eleasePS/
53-
dlldata.c
54-
55-
# DNX
56-
project.lock.json
57-
artifacts/
58-
59-
*_i.c
60-
*_p.c
61-
*_i.h
62-
*.ilk
63-
*.meta
64-
*.obj
65-
*.pch
66-
*.pdb
67-
*.pgc
68-
*.pgd
69-
*.rsp
70-
*.sbr
71-
*.tlb
72-
*.tli
73-
*.tlh
74-
*.tmp
75-
*.tmp_proj
1+
*.js
2+
*.js.map
763
*.log
77-
*.vspscc
78-
*.vssscc
79-
.builds
80-
*.pidb
81-
*.svclog
82-
*.scc
83-
84-
# Chutzpah Test files
85-
_Chutzpah*
86-
87-
# Visual C++ cache files
88-
ipch/
89-
*.aps
90-
*.ncb
91-
*.opendb
92-
*.opensdf
93-
*.sdf
94-
*.cachefile
95-
96-
# Visual Studio profiler
97-
*.psess
98-
*.vsp
99-
*.vspx
100-
*.sap
101-
102-
# TFS 2012 Local Workspace
103-
$tf/
104-
105-
# Guidance Automation Toolkit
106-
*.gpState
107-
108-
# ReSharper is a .NET coding add-in
109-
_ReSharper*/
110-
*.[Rr]e[Ss]harper
111-
*.DotSettings.user
112-
113-
# JustCode is a .NET coding add-in
114-
.JustCode
115-
116-
# TeamCity is a build add-in
117-
_TeamCity*
118-
119-
# DotCover is a Code Coverage Tool
120-
*.dotCover
121-
122-
# NCrunch
123-
_NCrunch_*
124-
.*crunch*.local.xml
125-
nCrunchTemp_*
126-
127-
# MightyMoose
128-
*.mm.*
129-
AutoTest.Net/
130-
131-
# Web workbench (sass)
132-
.sass-cache/
133-
134-
# Installshield output folder
135-
[Ee]xpress/
136-
137-
# DocProject is a documentation generator add-in
138-
DocProject/buildhelp/
139-
DocProject/Help/*.HxT
140-
DocProject/Help/*.HxC
141-
DocProject/Help/*.hhc
142-
DocProject/Help/*.hhk
143-
DocProject/Help/*.hhp
144-
DocProject/Help/Html2
145-
DocProject/Help/html
146-
147-
# Click-Once directory
148-
publish/
149-
150-
# Publish Web Output
151-
*.[Pp]ublish.xml
152-
*.azurePubxml
153-
# TODO: Comment the next line if you want to checkin your web deploy settings
154-
# but database connection strings (with potential passwords) will be unencrypted
155-
*.pubxml
156-
*.publishproj
157-
158-
# NuGet Packages
159-
*.nupkg
160-
# The packages folder can be ignored because of Package Restore
161-
**/packages/*
162-
# except build/, which is used as an MSBuild target.
163-
!**/packages/build/
164-
# Uncomment if necessary however generally it will be regenerated when needed
165-
#!**/packages/repositories.config
166-
# NuGet v3's project.json files produces more ignoreable files
167-
*.nuget.props
168-
*.nuget.targets
169-
170-
# Microsoft Azure Build Output
171-
csx/
172-
*.build.csdef
173-
174-
# Microsoft Azure Emulator
175-
ecf/
176-
rcf/
177-
178-
# Microsoft Azure ApplicationInsights config file
179-
ApplicationInsights.config
180-
181-
# Windows Store app package directory
182-
AppPackages/
183-
BundleArtifacts/
184-
185-
# Visual Studio cache files
186-
# files ending in .cache can be ignored
187-
*.[Cc]ache
188-
# but keep track of directories ending in .cache
189-
!*.[Cc]ache/
190-
191-
# Others
192-
ClientBin/
193-
~$*
194-
*~
195-
*.dbmdl
196-
*.dbproj.schemaview
197-
*.pfx
198-
*.publishsettings
199-
node_modules/
200-
orleans.codegen.cs
201-
202-
# RIA/Silverlight projects
203-
Generated_Code/
204-
205-
# Backup & report files from converting an old project file
206-
# to a newer Visual Studio version. Backup files are not needed,
207-
# because we have git ;-)
208-
_UpgradeReport_Files/
209-
Backup*/
210-
UpgradeLog*.XML
211-
UpgradeLog*.htm
212-
213-
# SQL Server files
214-
*.mdf
215-
*.ldf
216-
217-
# Business Intelligence projects
218-
*.rdl.data
219-
*.bim.layout
220-
*.bim_*.settings
221-
222-
# Microsoft Fakes
223-
FakesAssemblies/
224-
225-
# GhostDoc plugin setting file
226-
*.GhostDoc.xml
227-
228-
# Node.js Tools for Visual Studio
229-
.ntvs_analysis.dat
230-
231-
# Visual Studio 6 build log
232-
*.plg
233-
234-
# Visual Studio 6 workspace options file
235-
*.opt
236-
237-
# Visual Studio LightSwitch build output
238-
**/*.HTMLClient/GeneratedArtifacts
239-
**/*.DesktopClient/GeneratedArtifacts
240-
**/*.DesktopClient/ModelManifest.xml
241-
**/*.Server/GeneratedArtifacts
242-
**/*.Server/ModelManifest.xml
243-
_Pvt_Extensions
244-
245-
# Paket dependency manager
246-
.paket/paket.exe
247-
248-
# FAKE - F# Make
249-
.fake/
250-
251-
# NativeScript
252-
demo/platforms/
253-
demo/node_modules/
254-
4+
demo/*.d.ts
5+
demo/platforms
6+
demo/node_modules
7+
node_modules
8+
screens/

.npmignore

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# generated files
22
.vs
33
.vs/
4-
demo/
5-
nativescript-pulltorefresh.sln
4+
nativescript-shatterview.sln
65
.sln
76
*.sln
8-
references.d.ts
9-
tsconfig.json
10-
hooks/
11-
node_modules/
12-
screens/
7+
demo/
8+
screens/
9+
*.png
10+
*.log

demo/package.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"nativescript": {
33
"id": "org.nativescript.pulltorefresh",
44
"tns-android": {
5-
"version": "1.7.1"
5+
"version": "2.0.0"
66
},
77
"tns-ios": {
88
"version": "1.7.0"
@@ -11,5 +11,14 @@
1111
"dependencies": {
1212
"nativescript-pulltorefresh": "file:..",
1313
"tns-core-modules": "latest"
14+
},
15+
"devDependencies": {
16+
"babel-traverse": "6.8.0",
17+
"babel-types": "6.8.1",
18+
"babylon": "6.8.0",
19+
"filewalker": "0.1.2",
20+
"lazy": "1.0.11",
21+
"nativescript-dev-typescript": "^0.3.1",
22+
"typescript": "^1.8.7"
1423
}
1524
}

demo/tsconfig.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"target": "es5",
5+
"sourceMap": true,
6+
"experimentalDecorators": true,
7+
"noEmitHelpers": true
8+
},
9+
"exclude": [
10+
"node_modules",
11+
"platforms"
12+
]
13+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-pulltorefresh",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "A NativeScript plugin to provide the Pull to Refresh control on any view.",
55
"main": "pulltorefresh.js",
66
"nativescript": {

pulltorefresh-common.js

-37
This file was deleted.

0 commit comments

Comments
 (0)