polylith 0.1.71 → 0.1.73

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.
@@ -11,12 +11,6 @@ class {App}App extends App {
11
11
  });
12
12
  this.setHtmlTemplate('{path}/{src}/index.html', '{dest}{path}/index.html');
13
13
  this.addResources('', [
14
- {
15
- "dest": "styles",
16
- "cwd": "styles",
17
- "glob": "**/*.css",
18
- "keepNest": true
19
- },
20
14
  {
21
15
  "dest": "images",
22
16
  "cwd": "images",
@@ -8,12 +8,6 @@
8
8
  "destination": "{dest}{path}/index.html"
9
9
  },
10
10
  "resources": [
11
- {
12
- "dest": "styles",
13
- "cwd": "styles",
14
- "glob": "**/*.css",
15
- "keepNest": true
16
- },
17
11
  {
18
12
  "dest": "images",
19
13
  "cwd": "images",
package/bin/apps.js CHANGED
@@ -76,7 +76,7 @@ async function readJson(filename) {
76
76
  /**
77
77
  * Call this method to get the App object from the given app spec.
78
78
  *
79
- * @param {Object} spec the application spec from the poilylith configuration
79
+ * @param {Object} spec the application spec from the polylith configuration
80
80
  * object
81
81
  * @param {Object} options the command line options
82
82
  *
@@ -6,11 +6,10 @@
6
6
  "@polylith/config-store": "^0.1.0",
7
7
  "@polylith/core": "^0.1.0",
8
8
  "react": "^17.0.2",
9
- "react-dom": "^17.0.2"
10
- },
11
- "devDependencies": {
9
+ "react-dom": "^17.0.2",
12
10
  "@polylith/builder": "^0.1.0",
13
- "@polylith/server": "^0.1.0"
11
+ "@polylith/server": "^0.1.0",
12
+ "polylith": "^0.1.0"
14
13
  },
15
14
  "type": "module"
16
15
  }
package/bin/polylith.js CHANGED
@@ -333,6 +333,7 @@ function getNames(params) {
333
333
  * Call this method to run npm install
334
334
  */
335
335
  async function runInstall() {
336
+ console.log('installing npm depenencies')
336
337
  await exec('npm install');
337
338
  }
338
339
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polylith",
3
- "version": "0.1.71",
3
+ "version": "0.1.73",
4
4
  "description": "cli for the polylith environment",
5
5
  "bin": {
6
6
  "polylith": "bin/polylith.js"
@@ -17,7 +17,7 @@
17
17
  "author": "Glenn Anderson",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
- "@polylith/builder": "0.2.18",
20
+ "@polylith/builder": "0.2.19",
21
21
  "@polylith/server": "0.1.25",
22
22
  "fs-extra": "^10.1.0",
23
23
  "minimist": "^1.2.7"