sdc_client 0.57.18 → 0.57.19

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.
@@ -6,7 +6,6 @@
6
6
  <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7
7
  <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
8
8
  </content>
9
- <orderEntry type="jdk" jdkName="Poetry (SimpleDomControlClient)" jdkType="Python SDK" />
10
9
  <orderEntry type="sourceFolder" forTests="false" />
11
10
  <orderEntry type="module" module-name="SimpleDomControl" />
12
11
  </component>
package/gulp/gulp.jsx CHANGED
@@ -21,8 +21,8 @@ function scss() {
21
21
  * @returns {*}
22
22
  */
23
23
  function pre_compile_javascript() {
24
- let file_extentions = process.env.JS_CILENT_FILE_EXTENTIONS?.split(',') || ['.js', '.json'];
25
- return src(file_extentions.map((x) => `./src/**/*${x}`), {follow: true})
24
+ let fileExtensions = process.env.JS_CILENT_FILE_EXTENTIONS?.split(',') || ['.js', '.json'];
25
+ return src(fileExtensions.map((x) => `./src/**/*${x}`), {follow: true})
26
26
  .pipe(through.obj(function (obj, enc, next) {
27
27
  let srcFile = obj.path
28
28
  if (!obj.isNull() && !obj.isDirectory() && obj.isBuffer() && /.js$/.test(srcFile)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sdc_client",
3
- "version": "0.57.18",
3
+ "version": "0.57.19",
4
4
  "description": "Simple Dom Control",
5
5
  "main": "dist/ugly.index.js",
6
6
  "type": "module",