survey-creator-angular 1.9.92 → 1.9.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,40 @@ To get started with Survey Creator / Form Builder for Angular, refer to the foll
|
|
|
18
18
|
- [Live Examples](https://surveyjs.io/survey-creator/examples/free-nps-survey-template/angular)
|
|
19
19
|
- [What's New](https://surveyjs.io/WhatsNew)
|
|
20
20
|
|
|
21
|
+
## Build Survey Creator / Form Builder for Angular from Sources
|
|
22
|
+
|
|
23
|
+
If you want to build the library yourself, do the following:
|
|
24
|
+
|
|
25
|
+
1. **Build `survey-library` and `survey-creator-core`**\
|
|
26
|
+
Refer to the following instructions:
|
|
27
|
+
|
|
28
|
+
- [Build the SurveyJS Form Library from Sources](https://github.com/surveyjs/survey-library#build-the-surveyjs-form-library-from-sources)
|
|
29
|
+
- [Build the Survey Creator Model from Sources](https://github.com/surveyjs/survey-creator/tree/master/packages/survey-creator-core#build-the-survey-creator-model-from-sources)
|
|
30
|
+
|
|
31
|
+
> NOTE: Make sure that folders with cloned `survey-library` and `survey-creator` repositories are in the same directory.
|
|
32
|
+
|
|
33
|
+
2. **Install build dependencies for Survey Creator / Form Builder for Angular**
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
cd survey-creator/packages/survey-creator-angular
|
|
37
|
+
npm install
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
3. **Build the library**
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
npm run build
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
You can find the built library in the "build" directory.
|
|
47
|
+
|
|
48
|
+
4. **Run unit tests**
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
npm test
|
|
52
|
+
```
|
|
53
|
+
This command runs unit tests using [Karma](https://karma-runner.github.io/0.13/index.html).
|
|
54
|
+
|
|
21
55
|
## Licensing
|
|
22
56
|
|
|
23
57
|
Survey Creator is **not available for free commercial usage**. If you want to integrate it into your application, you must purchase a [commercial license](https://surveyjs.io/licensing). However, you can [use Survey Creator online](https://surveyjs.io/create-survey) to produce survey JSON configurations and run them with [SurveyJS Form Library](https://surveyjs.io/form-library/documentation/overview) in your application free of charge.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-angular",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.93",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
|
|
5
5
|
"homepage": "https://surveyjs.io/Overview/Survey-Creator",
|
|
6
6
|
"license": "https://surveyjs.io/Licenses#SurveyCreator",
|