@nzz/q-cli 1.5.4 → 1.5.5

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.
Files changed (46) hide show
  1. package/.vscode/settings.json +5 -0
  2. package/README.md +16 -1
  3. package/bin/commands/bootstrap.js +6 -0
  4. package/dev-server/routes/rendering-info.js +0 -1
  5. package/dev-server/routes/tool-default.js +0 -2
  6. package/package.json +1 -1
  7. package/skeletons/custom-code-skeleton/.nvmrc +1 -1
  8. package/skeletons/custom-code-skeleton/.vscode/settings.json +5 -0
  9. package/skeletons/custom-code-skeleton/package-lock.json +5335 -627
  10. package/skeletons/custom-code-skeleton/package.json +10 -7
  11. package/skeletons/custom-code-skeleton/rollup.config.js +63 -17
  12. package/skeletons/custom-code-skeleton/src/App.scss +3 -0
  13. package/skeletons/custom-code-skeleton/src/App.svelte +1 -7
  14. package/skeletons/custom-code-skeleton/src/main-prod.js +1 -0
  15. package/skeletons/custom-code-skeleton/src/main.js +1 -0
  16. package/skeletons/custom-code-skeleton/src/main.scss +1 -0
  17. package/skeletons/server-skeleton/auth/routes.js +0 -9
  18. package/skeletons/server-skeleton/index.js +1 -3
  19. package/skeletons/tool-skeleton/.nvmrc +1 -1
  20. package/skeletons/tool-skeleton/.travis.yml +26 -0
  21. package/skeletons/tool-skeleton/.vscode/settings.json +5 -0
  22. package/skeletons/tool-skeleton/Dockerfile +1 -1
  23. package/skeletons/tool-skeleton/LICENSE +20 -0
  24. package/skeletons/tool-skeleton/README.md +1 -1
  25. package/skeletons/tool-skeleton/index.js +1 -6
  26. package/skeletons/tool-skeleton/package-lock.json +8540 -2741
  27. package/skeletons/tool-skeleton/package.json +24 -12
  28. package/skeletons/tool-skeleton/rollup.config.js +75 -0
  29. package/skeletons/tool-skeleton/routes/fixtures/data.js +1 -3
  30. package/skeletons/tool-skeleton/routes/rendering-info/web.js +43 -20
  31. package/skeletons/tool-skeleton/routes/routes.js +1 -1
  32. package/skeletons/tool-skeleton/routes/script.js +4 -5
  33. package/skeletons/tool-skeleton/routes/stylesheet.js +4 -5
  34. package/skeletons/tool-skeleton/sass.config.js +66 -0
  35. package/skeletons/tool-skeleton/scripts_src/default.js +3 -0
  36. package/skeletons/tool-skeleton/styles_src/_variables.scss +1 -0
  37. package/skeletons/tool-skeleton/styles_src/main.scss +2 -0
  38. package/skeletons/tool-skeleton/test/e2e-tests.js +4 -6
  39. package/skeletons/tool-skeleton/views/dynamic/YourTool.scss +5 -0
  40. package/skeletons/tool-skeleton/views/dynamic/YourTool.svelte +19 -0
  41. package/skeletons/tool-skeleton/views/static/App.scss +5 -0
  42. package/skeletons/tool-skeleton/views/static/App.svelte +21 -0
  43. package/skeletons/tool-skeleton/views/static/components/Footer.svelte +31 -0
  44. package/skeletons/tool-skeleton/views/static/components/Header.svelte +7 -0
  45. package/skeletons/tool-skeleton/styles_src/default.scss +0 -4
  46. package/skeletons/tool-skeleton/tasks/build.js +0 -98
@@ -0,0 +1,5 @@
1
+ {
2
+ "[svelte]": {
3
+ "editor.defaultFormatter": "svelte.svelte-vscode"
4
+ }
5
+ }
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Q cli [![Build Status](https://travis-ci.com/nzzdev/Q-cli.svg?branch=dev)](https://travis-ci.com/nzzdev/Q-cli)
2
2
 
3
- **Maintainer**: [manuelroth](https://github.com/manuelroth)
3
+ **Maintainer**: [Nicolas Staub](https://github.com/fromdusttilldawn)
4
4
 
5
5
  ## Table of contents
6
6
 
@@ -26,6 +26,21 @@ nvm use
26
26
  npm install
27
27
  ```
28
28
 
29
+ For testing local changes of Q-cli, one can link the local package to the global installation of Q-cli:
30
+
31
+ ```bash
32
+ cd Q-cli
33
+ npm link
34
+ ```
35
+
36
+ Q commands will now use the local Q-cli.
37
+
38
+ To unlink, simply install Q-cli again globally:
39
+
40
+ ```bash
41
+ npm install @nzz/q-cli -g
42
+ ```
43
+
29
44
  [to the top](#table-of-contents)
30
45
 
31
46
  ## Functionality
@@ -4,6 +4,7 @@ const replaceInFile = require("replace-in-file");
4
4
  const chalk = require("chalk");
5
5
  const errorColor = chalk.red;
6
6
  const successColor = chalk.green;
7
+ const warningColor = chalk.yellow;
7
8
 
8
9
  module.exports = async function (type, name, basedir) {
9
10
  if (fs.existsSync(basedir)) {
@@ -31,6 +32,11 @@ module.exports = async function (type, name, basedir) {
31
32
  );
32
33
  await replaceInFile(replaceOptions);
33
34
  console.log(successColor(`Q ${type} is now bootstrapped in ${basedir}`));
35
+
36
+ if (type === "tool")
37
+ console.log(
38
+ warningColor("Search for 'TODO:' inside the new tool to get started!")
39
+ );
34
40
  } catch (error) {
35
41
  console.error(
36
42
  errorColor(
@@ -47,7 +47,6 @@ module.exports = {
47
47
  allowUnknown: true,
48
48
  },
49
49
  },
50
- cors: true,
51
50
  },
52
51
  handler: async function (request, h) {
53
52
  try {
@@ -52,7 +52,6 @@ module.exports = {
52
52
  allowUnknown: true,
53
53
  },
54
54
  },
55
- cors: true,
56
55
  },
57
56
  handler: async (request, h) => {
58
57
  let payload = null;
@@ -89,7 +88,6 @@ module.exports = {
89
88
  allowUnknown: true,
90
89
  },
91
90
  },
92
- cors: true,
93
91
  },
94
92
  handler: async (request, h) => {
95
93
  if (request.query.appendItemToPayload) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nzz/q-cli",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Cli tool to setup new Q tools, new Q server implementations and start Q dev server to test developing Q tools",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1 +1 @@
1
- 14
1
+ 16
@@ -0,0 +1,5 @@
1
+ {
2
+ "[svelte]": {
3
+ "editor.defaultFormatter": "svelte.svelte-vscode"
4
+ }
5
+ }