@genesislcap/design-system-configurator 11.4.1 → 11.4.2

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 (2) hide show
  1. package/bin/dsconfig.js +4 -6
  2. package/package.json +6 -6
package/bin/dsconfig.js CHANGED
@@ -1,4 +1,7 @@
1
1
  #!/usr/bin/env node
2
+ const http = require('http');
3
+ const path = require('path');
4
+ const handler = require('serve-handler');
2
5
  const yargs = require('yargs');
3
6
 
4
7
  yargs.option('port', {
@@ -12,17 +15,12 @@ yargs.option('port', {
12
15
  const argv = yargs.argv;
13
16
  const port = argv.port;
14
17
 
15
- const http = require('http');
16
-
17
- const handler = require('serve-handler');
18
-
19
- const path = require('path');
20
-
21
18
  const server = http.createServer((request, response) => {
22
19
  return handler(request, response, {
23
20
  public: path.resolve(__dirname, '../dist'),
24
21
  });
25
22
  });
23
+
26
24
  server.listen(port, () => {
27
25
  console.log(`Running at http://localhost:${port}`);
28
26
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/design-system-configurator",
3
3
  "description": "Design System Configurator App",
4
- "version": "11.4.1",
4
+ "version": "11.4.2",
5
5
  "sideEffects": [
6
6
  "*.css"
7
7
  ],
@@ -60,10 +60,10 @@
60
60
  "webpack-merge": "^5.7.3"
61
61
  },
62
62
  "dependencies": {
63
- "@genesislcap/alpha-design-system": "^11.4.1",
64
- "@genesislcap/documentation-components": "^11.4.1",
65
- "@genesislcap/foundation-ui": "^11.4.1",
66
- "@genesislcap/foundation-utils": "^11.4.1",
63
+ "@genesislcap/alpha-design-system": "^11.4.2",
64
+ "@genesislcap/documentation-components": "^11.4.2",
65
+ "@genesislcap/foundation-ui": "^11.4.2",
66
+ "@genesislcap/foundation-utils": "^11.4.2",
67
67
  "@microsoft/fast-colors": "^5.1.4",
68
68
  "@microsoft/fast-components": "^2.21.3",
69
69
  "@microsoft/fast-element": "^1.7.0",
@@ -76,5 +76,5 @@
76
76
  "publishConfig": {
77
77
  "access": "public"
78
78
  },
79
- "gitHead": "c902dc0114a2cdedbf82b59ef86a67edcbea7102"
79
+ "gitHead": "cf688a60af9de1bdda51787184a33138dcd4128d"
80
80
  }