jssm 5.52.0 → 5.53.0

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.
@@ -0,0 +1,22 @@
1
+ engines:
2
+ csslint:
3
+ enabled: true
4
+ duplication:
5
+ enabled: true
6
+ config:
7
+ languages:
8
+ - javascript
9
+ eslint:
10
+ enabled: true
11
+ fixme:
12
+ enabled: true
13
+ ratings:
14
+ paths:
15
+ - "**.css"
16
+ - "**.js"
17
+ - "**.jsx"
18
+ exclude_paths:
19
+ - dist/
20
+ - docs/
21
+ - src/js/tests/
22
+ - build/
package/.editorconfig ADDED
@@ -0,0 +1,12 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ end_of_line = lf
6
+ charset = utf-8
7
+ trim_trailing_whitespace = true
8
+ insert_final_newline = true
9
+ indent_size = 2
10
+
11
+ [*.md]
12
+ trim_trailing_whitespace = false
package/.eslintrc ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+
3
+ "parser" : "@typescript-eslint/parser",
4
+ "parserOptions": {
5
+ "sourceType" : "module",
6
+ },
7
+
8
+ "plugins" : [ "@typescript-eslint" ],
9
+ "env" : { "es6": true, "commonjs": true },
10
+
11
+ "extends" : [
12
+ "plugin:@typescript-eslint/eslint-recommended"
13
+ ],
14
+
15
+ rules: {
16
+ "no-unused-vars": 0,
17
+ "@typescript-eslint/no-unused-vars": 0
18
+ }
19
+
20
+ }
package/.nycrc ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "exclude": [
3
+ "src/ts/jssm-dot.*",
4
+ "build/**/*"
5
+ ]
6
+ }
package/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ language: node_js
2
+ node_js:
3
+ - "12"
4
+ - "11"
5
+ - "10"
6
+ - "8"
7
+ - "6"
8
+ after_success:
9
+ - npm run travis
@@ -1,2 +1,2 @@
1
- const version = "5.52.0";
1
+ const version = "5.53.0";
2
2
  export { version };