@anansi/cli 1.3.0 → 1.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 (3) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +2 -2
  3. package/run.js +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,31 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [1.4.2](https://github.com/ntucker/anansi/compare/@anansi/cli@1.4.1...@anansi/cli@1.4.2) (2022-06-13)
7
+
8
+ **Note:** Version bump only for package @anansi/cli
9
+
10
+
11
+
12
+
13
+
14
+ ### [1.4.1](https://github.com/ntucker/anansi/compare/@anansi/cli@1.4.0...@anansi/cli@1.4.1) (2022-06-12)
15
+
16
+ **Note:** Version bump only for package @anansi/cli
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.4.0](https://github.com/ntucker/anansi/compare/@anansi/cli@1.3.0...@anansi/cli@1.4.0) (2022-06-09)
23
+
24
+
25
+ ### 🚀 Features
26
+
27
+ * SSR feature to codegen ([#1528](https://github.com/ntucker/anansi/issues/1528)) ([ad4e886](https://github.com/ntucker/anansi/commit/ad4e886e073ca17b26d6c33828836a06304c1cee))
28
+
29
+
30
+
6
31
  ## [1.3.0](https://github.com/ntucker/anansi/compare/@anansi/cli@1.2.0...@anansi/cli@1.3.0) (2022-05-29)
7
32
 
8
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anansi/cli",
3
- "version": "1.3.0",
3
+ "version": "1.4.2",
4
4
  "description": "Fast React Web Apps",
5
5
  "homepage": "https://github.com/ntucker/anansi/tree/master/packages/cli#readme",
6
6
  "repository": {
@@ -51,7 +51,7 @@
51
51
  "npm": ">= 6.0.0"
52
52
  },
53
53
  "dependencies": {
54
- "@anansi/generator-js": "^8.0.8",
54
+ "@anansi/generator-js": "^8.3.0",
55
55
  "bin-version-check": "^4.0.0",
56
56
  "chalk": "^4.1.2",
57
57
  "commander": "^9.3.0",
package/run.js CHANGED
@@ -119,7 +119,7 @@ program
119
119
 
120
120
  if (options.pubPath) process.env.WEBPACK_PUBLIC_PATH = options.pubPath;
121
121
  else if (!process.env.WEBPACK_PUBLIC_PATH)
122
- process.env.WEBPACK_PUBLIC_PATH = '/assets/';
122
+ process.env.WEBPACK_PUBLIC_PATH = options.dev ? '/assets/' : '/';
123
123
 
124
124
  if (options.dev) {
125
125
  devServe(entrypath);