@nx/nuxt 23.0.0-rc.4 → 23.1.0-beta.0

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.
package/README.md CHANGED
@@ -7,13 +7,12 @@
7
7
 
8
8
  <div style="text-align: center;">
9
9
 
10
- [![CircleCI](https://circleci.com/gh/nrwl/nx.svg?style=svg)](https://circleci.com/gh/nrwl/nx)
11
10
  [![License](https://img.shields.io/npm/l/@nx/workspace.svg?style=flat-square)]()
12
11
  [![NPM Version](https://badge.fury.io/js/nx.svg)](https://www.npmjs.com/package/nx)
13
12
  [![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()
14
13
  [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
15
- [![Join the chat at https://gitter.im/nrwl-nx/community](https://badges.gitter.im/nrwl-nx/community.svg)](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
16
14
  [![Join us on the Official Nx Discord Server](https://img.shields.io/discord/1143497901675401286?label=discord)](https://go.nx.dev/community)
15
+ [![Nx Sandboxing](https://staging.nx.app/workspaces/62d013ea0852fe0a2df74438/sandbox-badge.svg)](https://nx.dev/docs/features/ci-features/sandboxing)
17
16
 
18
17
  </div>
19
18
 
@@ -1,9 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.createTsConfig = createTsConfig;
4
- const tslib_1 = require("tslib");
5
4
  const devkit_1 = require("@nx/devkit");
6
- const shared = tslib_1.__importStar(require("@nx/js"));
5
+ const internal_1 = require("@nx/js/internal");
7
6
  function createTsConfig(host, options, relativePathToRootTsConfig) {
8
7
  createAppTsConfig(host, options);
9
8
  const json = {
@@ -24,7 +23,7 @@ function createTsConfig(host, options, relativePathToRootTsConfig) {
24
23
  if (options.rootProject) {
25
24
  json.compileOnSave = false;
26
25
  json.compilerOptions = {
27
- ...shared.tsConfigBaseOptions,
26
+ ...(0, internal_1.getTsConfigBaseOptions)(host),
28
27
  ...json.compilerOptions,
29
28
  };
30
29
  json.exclude = ['node_modules', 'tmp'];
@@ -1 +1 @@
1
- export declare function loadNuxtKitDynamicImport(): Promise<typeof import("@nuxt/kit")>;
1
+ export declare function loadNuxtKitDynamicImport(): Promise<typeof import('@nuxt/kit')>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/nuxt",
3
- "version": "23.0.0-rc.4",
3
+ "version": "23.1.0-beta.0",
4
4
  "private": false,
5
5
  "description": "The Nuxt plugin for Nx contains executors and generators for managing Nuxt applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -60,15 +60,15 @@
60
60
  "dependencies": {
61
61
  "tslib": "^2.3.0",
62
62
  "semver": "^7.6.3",
63
- "@nx/devkit": "23.0.0-rc.4",
64
- "@nx/eslint": "23.0.0-rc.4",
65
- "@nx/vue": "23.0.0-rc.4",
66
- "@nx/vite": "23.0.0-rc.4",
67
- "@nx/js": "23.0.0-rc.4",
68
- "@nx/vitest": "23.0.0-rc.4"
63
+ "@nx/devkit": "23.1.0-beta.0",
64
+ "@nx/eslint": "23.1.0-beta.0",
65
+ "@nx/vite": "23.1.0-beta.0",
66
+ "@nx/vue": "23.1.0-beta.0",
67
+ "@nx/js": "23.1.0-beta.0",
68
+ "@nx/vitest": "23.1.0-beta.0"
69
69
  },
70
70
  "devDependencies": {
71
- "nx": "23.0.0-rc.4"
71
+ "nx": "23.1.0-beta.0"
72
72
  },
73
73
  "peerDependencies": {
74
74
  "nuxt": ">=3.0.0 <5.0.0",