Skip to content

Commit 129f0a8

Browse files
Merge pull request #87 from SimplrJS/dev
Dev
2 parents 1041c76 + ccb0c2d commit 129f0a8

File tree

162 files changed

+12978
-1
lines changed

Some content is hidden

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

162 files changed

+12978
-1
lines changed

.gitignore

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ PublishScripts/
153153
# NuGet Packages
154154
*.nupkg
155155
# The packages folder can be ignored because of Package Restore
156-
**/packages/*
156+
#**/packages/*
157157
# except build/, which is used as an MSBuild target.
158158
!**/packages/build/
159159
# Uncomment if necessary however generally it will be regenerated when needed
@@ -250,3 +250,16 @@ paket-files/
250250
# JetBrains Rider
251251
.idea/
252252
*.sln.iml
253+
yarn.lock
254+
255+
packages/simplr-forms-test
256+
257+
dist
258+
@types
259+
package-lock.json
260+
261+
# MacOS
262+
.DS_Store
263+
264+
# Ignore Rush temporary files
265+
/common/temp/**

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: node_js
2+
notifications:
3+
email:
4+
on_success: never
5+
on_failure: change
6+
node_js:
7+
- stable
8+
before_install:
9+
- "npm install -g npm@^4.6.1"
10+
- "npm install -g typescript@^2.3"
11+
script:
12+
- npm run generate
13+
- npm run tools-build
14+
- npm run source-build
15+
- npm test

0 commit comments

Comments
 (0)