@equinor/echo-cli 2.3.0 → 2.4.2-beta-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.
- package/README.md +393 -384
- package/lib/echo-dev-host/README.md +121 -121
- package/lib/echo-dev-host/babel.config.js +10 -10
- package/lib/echo-dev-host/echo-dev-host-build/d2d97a9feca22f12a8c8c7413d7867ac.jpg +0 -0
- package/lib/echo-dev-host/echo-dev-host-build/env-config.js +1 -0
- package/lib/echo-dev-host/echo-dev-host-build/index.css +60 -0
- package/lib/echo-dev-host/echo-dev-host-build/index.html +21 -0
- package/lib/echo-dev-host/echo-dev-host-build/main.echo.bundle.js +3 -0
- package/lib/echo-dev-host/echo-dev-host-build/main.echo.bundle.js.LICENSE.txt +149 -0
- package/lib/echo-dev-host/echo-dev-host-build/main.echo.bundle.js.map +1 -0
- package/lib/echo-dev-host/echo-dev-host-build/vendors-node_modules_babel_polyfill_lib_index_js-node_modules_react-dom_client_js-node_module-972289.echo.bundle.js +3 -0
- package/lib/echo-dev-host/echo-dev-host-build/vendors-node_modules_babel_polyfill_lib_index_js-node_modules_react-dom_client_js-node_module-972289.echo.bundle.js.LICENSE.txt +8539 -0
- package/lib/echo-dev-host/echo-dev-host-build/vendors-node_modules_babel_polyfill_lib_index_js-node_modules_react-dom_client_js-node_module-972289.echo.bundle.js.map +1 -0
- package/lib/echo-dev-host/jest.config.js +21 -21
- package/lib/echo-dev-host/package-lock.json +13153 -13127
- package/lib/echo-dev-host/package.json +14 -14
- package/lib/echo-dev-host/public/env-config.js +17 -17
- package/lib/echo-dev-host/public/index.html +21 -21
- package/lib/echo-dev-host/src/index.tsx +0 -1
- package/lib/echo-dev-host/tsconfig.json +21 -21
- package/lib/echo-dev-host/webpack.config.js +145 -145
- package/lib/sync-echo-dev-versions.d.ts +6 -0
- package/lib/sync-echo-dev-versions.js +43 -0
- package/lib/sync-echo-dev-versions.js.map +1 -0
- package/lib/tools/buildScripts/buildAndCopyDevHost.test.d.ts +1 -0
- package/lib/tools/buildScripts/buildAndCopyDevHost.test.js +500 -0
- package/lib/tools/buildScripts/buildAndCopyDevHost.test.js.map +1 -0
- package/lib/utils/merge.test.d.ts +1 -0
- package/lib/utils/merge.test.js +29 -0
- package/lib/utils/merge.test.js.map +1 -0
- package/package.json +111 -111
- package/templates/echoAppTemplate/.gitattributes +3 -3
- package/templates/echoAppTemplate/package.json +35 -35
- package/templates/echoAppTemplate/readme.md +41 -41
- package/templates/echoAppTemplate/tsconfig.json +25 -25
- package/templates/echoAppTemplateTutorial/.gitattributes +3 -3
- package/templates/echoAppTemplateTutorial/package.json +36 -36
- package/templates/echoAppTemplateTutorial/readme.md +41 -41
- package/templates/echoAppTemplateTutorial/tsconfig.json +25 -25
- package/templates/echoLibraryTemplate/package.json +35 -35
- package/templates/echoLibraryTemplate/public/index.html +21 -21
- package/templates/echoLibraryTemplate/readme.md +1 -1
- package/templates/echoPluginTemplate/package.json +35 -35
- package/templates/echoPluginTemplate/public/index.html +21 -21
- package/templates/echoPluginTemplate/readme.md +1 -1
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "echo-library-template",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "build/index.js",
|
|
6
|
-
"source": "src/index.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "echo-build",
|
|
9
|
-
"start": "echo-build -s -d"
|
|
10
|
-
},
|
|
11
|
-
"author": "",
|
|
12
|
-
"license": "ISC",
|
|
13
|
-
"manifest": {},
|
|
14
|
-
"dependencies": {},
|
|
15
|
-
"peerDependencies": {
|
|
16
|
-
"@equinor/echo-base": ">= 0.7.0 < 0.8.0",
|
|
17
|
-
"@equinor/echo-components": ">= 0.11.1 < 0.12.0",
|
|
18
|
-
"@equinor/echo-core": ">= 0.9.8 < 0.10.0",
|
|
19
|
-
"@equinor/echo-search": ">= 0.15.3 < 0.16.0",
|
|
20
|
-
"@equinor/echo-utils": ">= 0.4.1 < 0.5.0",
|
|
21
|
-
"react": ">= 17.0.2",
|
|
22
|
-
"react-dom": " >= 17.0.2"
|
|
23
|
-
},
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@equinor/echo-base": "0.7.3",
|
|
26
|
-
"@equinor/echo-components": "0.11.16",
|
|
27
|
-
"@equinor/echo-core": "0.9.12",
|
|
28
|
-
"@equinor/echo-search": "0.15.8",
|
|
29
|
-
"@equinor/echo-utils": "0.4.5",
|
|
30
|
-
"@equinor/echo-cli": "0.14.18",
|
|
31
|
-
"@types/react": "18.0.27",
|
|
32
|
-
"@types/react-dom": "18.0.10",
|
|
33
|
-
"react": "18.2.0",
|
|
34
|
-
"react-dom": "18.2.0"
|
|
35
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "echo-library-template",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "build/index.js",
|
|
6
|
+
"source": "src/index.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "echo-build",
|
|
9
|
+
"start": "echo-build -s -d"
|
|
10
|
+
},
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"manifest": {},
|
|
14
|
+
"dependencies": {},
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"@equinor/echo-base": ">= 0.7.0 < 0.8.0",
|
|
17
|
+
"@equinor/echo-components": ">= 0.11.1 < 0.12.0",
|
|
18
|
+
"@equinor/echo-core": ">= 0.9.8 < 0.10.0",
|
|
19
|
+
"@equinor/echo-search": ">= 0.15.3 < 0.16.0",
|
|
20
|
+
"@equinor/echo-utils": ">= 0.4.1 < 0.5.0",
|
|
21
|
+
"react": ">= 17.0.2",
|
|
22
|
+
"react-dom": " >= 17.0.2"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@equinor/echo-base": "0.7.3",
|
|
26
|
+
"@equinor/echo-components": "0.11.16",
|
|
27
|
+
"@equinor/echo-core": "0.9.12",
|
|
28
|
+
"@equinor/echo-search": "0.15.8",
|
|
29
|
+
"@equinor/echo-utils": "0.4.5",
|
|
30
|
+
"@equinor/echo-cli": "0.14.18",
|
|
31
|
+
"@types/react": "18.0.27",
|
|
32
|
+
"@types/react-dom": "18.0.10",
|
|
33
|
+
"react": "18.2.0",
|
|
34
|
+
"react-dom": "18.2.0"
|
|
35
|
+
}
|
|
36
36
|
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<!-- src/template.html -->
|
|
2
|
-
<!DOCTYPE html>
|
|
3
|
-
<html lang="en">
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="UTF-8">
|
|
6
|
-
<title>Echo | Search</title>
|
|
7
|
-
<link rel="stylesheet" href="style.css">
|
|
8
|
-
</head>
|
|
9
|
-
|
|
10
|
-
<body>
|
|
11
|
-
<div class="centered">
|
|
12
|
-
<img src="./ee.png" width="250" alt="EchoSearch">
|
|
13
|
-
<div>Example</div>
|
|
14
|
-
<h1 class="header">Echo Search</h1><br />
|
|
15
|
-
<p>Please look at your developer console.</p>
|
|
16
|
-
<button id="start">Start</button>
|
|
17
|
-
<button id="doStuff">Start</button>
|
|
18
|
-
</div>
|
|
19
|
-
</body>
|
|
20
|
-
|
|
21
|
-
</html>
|
|
1
|
+
<!-- src/template.html -->
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<title>Echo | Search</title>
|
|
7
|
+
<link rel="stylesheet" href="style.css">
|
|
8
|
+
</head>
|
|
9
|
+
|
|
10
|
+
<body>
|
|
11
|
+
<div class="centered">
|
|
12
|
+
<img src="./ee.png" width="250" alt="EchoSearch">
|
|
13
|
+
<div>Example</div>
|
|
14
|
+
<h1 class="header">Echo Search</h1><br />
|
|
15
|
+
<p>Please look at your developer console.</p>
|
|
16
|
+
<button id="start">Start</button>
|
|
17
|
+
<button id="doStuff">Start</button>
|
|
18
|
+
</div>
|
|
19
|
+
</body>
|
|
20
|
+
|
|
21
|
+
</html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# echoLibraryTemplate
|
|
1
|
+
# echoLibraryTemplate
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "echo-plugin-template",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "build/index.js",
|
|
6
|
-
"source": "src/index.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "echo-build",
|
|
9
|
-
"start": "echo-build -s -d"
|
|
10
|
-
},
|
|
11
|
-
"author": "",
|
|
12
|
-
"license": "ISC",
|
|
13
|
-
"manifest": {},
|
|
14
|
-
"dependencies": {},
|
|
15
|
-
"peerDependencies": {
|
|
16
|
-
"@equinor/echo-base": ">= 0.7.0 < 0.8.0",
|
|
17
|
-
"@equinor/echo-components": ">= 0.11.1 < 0.12.0",
|
|
18
|
-
"@equinor/echo-core": ">= 0.9.8 < 0.10.0",
|
|
19
|
-
"@equinor/echo-search": ">= 0.15.3 < 0.16.0",
|
|
20
|
-
"@equinor/echo-utils": ">= 0.4.1 < 0.5.0",
|
|
21
|
-
"react": ">= 17.0.2",
|
|
22
|
-
"react-dom": " >= 17.0.2"
|
|
23
|
-
},
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@equinor/echo-base": "0.7.3",
|
|
26
|
-
"@equinor/echo-components": "0.11.16",
|
|
27
|
-
"@equinor/echo-core": "0.9.12",
|
|
28
|
-
"@equinor/echo-search": "0.15.8",
|
|
29
|
-
"@equinor/echo-utils": "0.4.5",
|
|
30
|
-
"@equinor/echo-cli": "0.14.18",
|
|
31
|
-
"@types/react": "18.0.27",
|
|
32
|
-
"@types/react-dom": "18.0.10",
|
|
33
|
-
"react": "18.2.0",
|
|
34
|
-
"react-dom": "18.2.0"
|
|
35
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "echo-plugin-template",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "build/index.js",
|
|
6
|
+
"source": "src/index.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "echo-build",
|
|
9
|
+
"start": "echo-build -s -d"
|
|
10
|
+
},
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"manifest": {},
|
|
14
|
+
"dependencies": {},
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"@equinor/echo-base": ">= 0.7.0 < 0.8.0",
|
|
17
|
+
"@equinor/echo-components": ">= 0.11.1 < 0.12.0",
|
|
18
|
+
"@equinor/echo-core": ">= 0.9.8 < 0.10.0",
|
|
19
|
+
"@equinor/echo-search": ">= 0.15.3 < 0.16.0",
|
|
20
|
+
"@equinor/echo-utils": ">= 0.4.1 < 0.5.0",
|
|
21
|
+
"react": ">= 17.0.2",
|
|
22
|
+
"react-dom": " >= 17.0.2"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@equinor/echo-base": "0.7.3",
|
|
26
|
+
"@equinor/echo-components": "0.11.16",
|
|
27
|
+
"@equinor/echo-core": "0.9.12",
|
|
28
|
+
"@equinor/echo-search": "0.15.8",
|
|
29
|
+
"@equinor/echo-utils": "0.4.5",
|
|
30
|
+
"@equinor/echo-cli": "0.14.18",
|
|
31
|
+
"@types/react": "18.0.27",
|
|
32
|
+
"@types/react-dom": "18.0.10",
|
|
33
|
+
"react": "18.2.0",
|
|
34
|
+
"react-dom": "18.2.0"
|
|
35
|
+
}
|
|
36
36
|
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<!-- src/template.html -->
|
|
2
|
-
<!DOCTYPE html>
|
|
3
|
-
<html lang="en">
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="UTF-8">
|
|
6
|
-
<title>Echo | Search</title>
|
|
7
|
-
<link rel="stylesheet" href="style.css">
|
|
8
|
-
</head>
|
|
9
|
-
|
|
10
|
-
<body>
|
|
11
|
-
<div class="centered">
|
|
12
|
-
<img src="./ee.png" width="250" alt="EchoSearch">
|
|
13
|
-
<div>Example</div>
|
|
14
|
-
<h1 class="header">Echo Search</h1><br />
|
|
15
|
-
<p>Please look at your developer console.</p>
|
|
16
|
-
<button id="start">Start</button>
|
|
17
|
-
<button id="doStuff">Start</button>
|
|
18
|
-
</div>
|
|
19
|
-
</body>
|
|
20
|
-
|
|
21
|
-
</html>
|
|
1
|
+
<!-- src/template.html -->
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<title>Echo | Search</title>
|
|
7
|
+
<link rel="stylesheet" href="style.css">
|
|
8
|
+
</head>
|
|
9
|
+
|
|
10
|
+
<body>
|
|
11
|
+
<div class="centered">
|
|
12
|
+
<img src="./ee.png" width="250" alt="EchoSearch">
|
|
13
|
+
<div>Example</div>
|
|
14
|
+
<h1 class="header">Echo Search</h1><br />
|
|
15
|
+
<p>Please look at your developer console.</p>
|
|
16
|
+
<button id="start">Start</button>
|
|
17
|
+
<button id="doStuff">Start</button>
|
|
18
|
+
</div>
|
|
19
|
+
</body>
|
|
20
|
+
|
|
21
|
+
</html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# Woohoo module
|
|
1
|
+
# Woohoo module
|