From 27bbe4648c0d6fd760e9e00aa1cf824317da7631 Mon Sep 17 00:00:00 2001 From: AndrewTelnov Date: Wed, 26 Oct 2016 15:15:14 +0300 Subject: [PATCH] Update to v0.10.0 --- .gitignore | 12 ++++++++++++ README.md | 13 +------------ gulpfile.js | 2 +- packagetemplate.json | 1 + 4 files changed, 15 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 5014aa254c..e38a9f47c7 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ node_modules/* packages/*/node_modules/* packages/*/dist/* Properties/* +src/*/*.js shippable/* typings/* wwwroot/* @@ -18,3 +19,14 @@ project.lock.json *.cmd .tsdrc .idea +/Content/survey.css +/src/knockout/template.window.ko.html.ts +/src/knockout/template.ko.html.ts +*.js +/packages/survey-react/package.json +/packages/survey-react/css/survey.css +/packages/survey-react/css +/packages/survey-react +/packages/survey-knockout/package.json +/packages/survey-knockout/css/survey.css +/.gitattributes diff --git a/README.md b/README.md index b72a449ada..3cc00aba76 100644 --- a/README.md +++ b/README.md @@ -12,17 +12,10 @@ Install the library using npm. ``` npm install survey-knockout ``` -If you are using bootstrap then go with bootstrap templates: -``` -npm install survey-knockout-bootstrap -``` -If you use react, then install the react versions: +If you use react, then install the react version: ``` npm install survey-react ``` -``` -npm install survey-react-bootstrap -``` Or dowload the latest version as zip file [Download](http://surveyjs.org/downloads/surveyjs.zip) @@ -64,10 +57,6 @@ To build library yourself: ``` The first command will copy all required files to 'wwwroot' directory and the last command will run unit tests usign [Karma](https://karma-runner.github.io/0.13/index.html) -##Coming features - -Find the features under development and Todo list in the [Trello board](https://trello.com/b/lAwhTw3H/surveyjs-project). - ##License MIT license - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) diff --git a/gulpfile.js b/gulpfile.js index 52196e9882..6010d2d580 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -18,7 +18,7 @@ var gulp = require('gulp'), var Server = require("karma").Server; -var libraryVersion = "0.9.12"; +var libraryVersion = "0.10.0"; var paths = { webroot: "./" + project.webroot + "/", diff --git a/packagetemplate.json b/packagetemplate.json index 6be86fdad7..04645e0c56 100644 --- a/packagetemplate.json +++ b/packagetemplate.json @@ -5,6 +5,7 @@ "keywords": [ "Survey", "JavaScript", + "Bootstrap", "Library" ], "homepage": "https://surveyjs.org/",