chart-services 1.9.3

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/.babelrc ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "presets": [
3
+ "@babel/preset-env"
4
+ ],
5
+ "plugins": [
6
+ ]
7
+ }
package/.eslintrc.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "env": {
3
+ "browser": true,
4
+ "commonjs": true,
5
+ "es6": true,
6
+ "node": true
7
+ },
8
+ "extends": "eslint:recommended",
9
+ "parserOptions": {
10
+ "sourceType": "module"
11
+ },
12
+ "rules": {
13
+ "indent": [
14
+ "error",
15
+ 4
16
+ ],
17
+ "linebreak-style": [
18
+ "error",
19
+ "unix"
20
+ ],
21
+ "quotes": [
22
+ "error",
23
+ "single"
24
+ ],
25
+ "semi": [
26
+ "error",
27
+ "always"
28
+ ]
29
+ }
30
+ }
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # npm link
2
+ ```bash
3
+ npm link cboard-chart ee-library
4
+ ```
5
+ comment
package/build.sh ADDED
@@ -0,0 +1,17 @@
1
+ #!/bin/bash
2
+
3
+ # build.sh production y
4
+
5
+ env=${1}
6
+ release=${2}
7
+ cmd="webpack --env.${env}"
8
+
9
+ cat << EOF
10
+ ==========================================================
11
+ env = ${env}
12
+ release = ${release}
13
+ run cmd: ${cmd}
14
+ ==========================================================
15
+ EOF
16
+
17
+ eval ${cmd}