survey-analytics 1.9.33 → 1.9.34

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 CHANGED
@@ -63,7 +63,7 @@ Make sure that you have Node.js v6.0.0 or later and npm v2.7.0 or later installe
63
63
  1. **Build the library**
64
64
 
65
65
  ```
66
- npm run build_prod
66
+ npm run build:prod
67
67
  ```
68
68
 
69
69
  You can find the built scripts and style sheets in the `packages` folder.
package/package.json CHANGED
@@ -11,12 +11,15 @@
11
11
  "doc_gen": "node doc_generator/lib_docgenerator.js src/index.ts",
12
12
  "doc_update": "chmod +x ./docupdate_npm.sh && ./docupdate_npm.sh",
13
13
  "watch:dev": "webpack --env.buildType dev --watch",
14
- "build_dev": "webpack --env.buildType dev",
15
- "build_prod": "npm run build_dev && webpack --env.buildType prod && node dts_cleaner.js packages/survey.analytics.d.ts",
14
+ "build:dev": "webpack --env.buildType dev",
15
+ "build:prod": "npm run build:dev && webpack --env.buildType prod",
16
+ "build:types:summary": "tsc --p tsconfig.summary.json && echo \"declare module 'survey-analytics' { import main = require('entries/summary'); export = main; }\" >> packages/survey.analytics.d.ts",
17
+ "build:types:datatables": "tsc --p tsconfig.datatables.json && echo \"declare module 'survey-analytics/survey.analytics.datatables' { import main = require('entries/datatables'); export = main; }\" >> packages/survey.analytics.datatables.d.ts",
18
+ "build:types:tabulator": "tsc --p tsconfig.tabulator.json && echo \"declare module 'survey-analytics/survey.analytics.tabulator' { import main = require('entries/tabulator'); export = main; }\" >> packages/survey.analytics.tabulator.d.ts",
16
19
  "lint": "eslint ./src --quiet",
17
20
  "pre-push-check": "npm run lint && npm run test"
18
21
  },
19
- "version": "1.9.33",
22
+ "version": "1.9.34",
20
23
  "name": "survey-analytics",
21
24
  "description": "SurveyJS analytics Library.",
22
25
  "main": "survey.analytics.js",
@@ -85,7 +88,6 @@
85
88
  "concurrently": "^5.3.0",
86
89
  "css-loader": "^3.6.0",
87
90
  "dotenv": "4.0.0",
88
- "dts-bundle": "0.7.2",
89
91
  "eslint": "^7.32.0",
90
92
  "github-api": "^3.4.0",
91
93
  "html-loader": "^0.4.4",
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.33
2
+ * surveyjs - SurveyJS Analytics library v1.9.34
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */