@cedarjs/cli 1.1.1 → 1.1.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/dist/lib/exec.js +6 -2
  2. package/package.json +11 -11
package/dist/lib/exec.js CHANGED
@@ -8,7 +8,9 @@ import {
8
8
  cedarCellTransform,
9
9
  cedarjsDirectoryNamedImportPlugin,
10
10
  cedarjsJobPathInjectorPlugin,
11
- cedarSwapApolloProvider
11
+ cedarSwapApolloProvider,
12
+ cedarImportDirPlugin,
13
+ cedarAutoImportsPlugin
12
14
  } from "@cedarjs/vite";
13
15
  async function runScriptFunction({
14
16
  path: scriptPath,
@@ -72,7 +74,9 @@ async function runScriptFunction({
72
74
  cedarjsDirectoryNamedImportPlugin(),
73
75
  cedarCellTransform(),
74
76
  cedarjsJobPathInjectorPlugin(),
75
- cedarSwapApolloProvider()
77
+ cedarSwapApolloProvider(),
78
+ cedarImportDirPlugin(),
79
+ cedarAutoImportsPlugin()
76
80
  ]
77
81
  });
78
82
  if (Number(viteVersion.split(".")[0]) < 6) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,15 +31,15 @@
31
31
  "dependencies": {
32
32
  "@babel/preset-typescript": "7.27.1",
33
33
  "@babel/runtime-corejs3": "7.27.6",
34
- "@cedarjs/api-server": "1.1.1",
35
- "@cedarjs/cli-helpers": "1.1.1",
36
- "@cedarjs/fastify-web": "1.1.1",
37
- "@cedarjs/internal": "1.1.1",
38
- "@cedarjs/prerender": "1.1.1",
39
- "@cedarjs/project-config": "1.1.1",
40
- "@cedarjs/structure": "1.1.1",
41
- "@cedarjs/telemetry": "1.1.1",
42
- "@cedarjs/web-server": "1.1.1",
34
+ "@cedarjs/api-server": "1.1.2",
35
+ "@cedarjs/cli-helpers": "1.1.2",
36
+ "@cedarjs/fastify-web": "1.1.2",
37
+ "@cedarjs/internal": "1.1.2",
38
+ "@cedarjs/prerender": "1.1.2",
39
+ "@cedarjs/project-config": "1.1.2",
40
+ "@cedarjs/structure": "1.1.2",
41
+ "@cedarjs/telemetry": "1.1.2",
42
+ "@cedarjs/web-server": "1.1.2",
43
43
  "@listr2/prompt-adapter-enquirer": "2.0.16",
44
44
  "@opentelemetry/api": "1.8.0",
45
45
  "@opentelemetry/core": "1.22.0",
@@ -101,5 +101,5 @@
101
101
  "publishConfig": {
102
102
  "access": "public"
103
103
  },
104
- "gitHead": "0c21e9ed1de0c7302295f3ca284924e48dd81afe"
104
+ "gitHead": "2e526cd5ee2f4b5850f79cc841bf5b5e1dfdea37"
105
105
  }