@nx/react 16.8.0-rc.0 → 16.9.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
@@ -8,7 +8,7 @@
8
8
  [![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()
9
9
  [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
10
10
  [![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)
11
- [![Join us @nx/community on slack](https://img.shields.io/badge/slack-%40nrwl%2Fcommunity-brightgreen)](https://join.slack.com/t/nrwlcommunity/shared_invite/enQtNzU5MTE4OTQwOTk0LTgxY2E0ZWYzMWE0YzA5ZDA2MWM1NDVhNmI2ZWMyYmZhNWJiODk3MjkxZjY3MzU5ZjRmM2NmNWU1OTgyZmE4Mzc)
11
+ [![Join us on the Official Nx Discord Server](https://simpleicons.org/icons/discord.svg)](https://go.nx.dev/community)
12
12
 
13
13
  </div>
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/react",
3
- "version": "16.8.0-rc.0",
3
+ "version": "16.9.0-beta.0",
4
4
  "private": false,
5
5
  "description": "The React plugin for Nx contains executors and generators for managing React applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Cypress, and Storybook.\n\n- Generators for applications, libraries, components, hooks, 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": {
@@ -31,11 +31,11 @@
31
31
  "migrations": "./migrations.json"
32
32
  },
33
33
  "dependencies": {
34
- "@nrwl/react": "16.8.0-rc.0",
35
- "@nx/devkit": "16.8.0-rc.0",
36
- "@nx/js": "16.8.0-rc.0",
37
- "@nx/linter": "16.8.0-rc.0",
38
- "@nx/web": "16.8.0-rc.0",
34
+ "@nrwl/react": "16.9.0-beta.0",
35
+ "@nx/devkit": "16.9.0-beta.0",
36
+ "@nx/js": "16.9.0-beta.0",
37
+ "@nx/linter": "16.9.0-beta.0",
38
+ "@nx/web": "16.9.0-beta.0",
39
39
  "@phenomnomnominal/tsquery": "~5.0.1",
40
40
  "@svgr/webpack": "^8.0.1",
41
41
  "chalk": "^4.1.0",
@@ -47,5 +47,5 @@
47
47
  "access": "public"
48
48
  },
49
49
  "type": "commonjs",
50
- "gitHead": "44d0b22f4f6c4a790e2ad4702bf27ffa15073582"
50
+ "gitHead": "822fb12c3f0bbaeb6d4a6fbc6cb1064a291e907f"
51
51
  }
@@ -23,6 +23,7 @@ function updateModuleFederationProject(host, options) {
23
23
  defaultConfiguration: 'production',
24
24
  options: {
25
25
  buildTarget: `${options.projectName}:build`,
26
+ watch: false,
26
27
  port: options.devServerPort,
27
28
  },
28
29
  configurations: {
package/tailwind.js CHANGED
@@ -7,7 +7,7 @@ const generate_globs_1 = require("@nx/js/src/utils/generate-globs");
7
7
  * @param dirPath workspace relative directory path that will be used to infer the parent project and dependencies
8
8
  * @param fileGlobPattern pass a custom glob pattern to be used
9
9
  */
10
- function createGlobPatternsForDependencies(dirPath, fileGlobPattern = '/**/!(*.stories|*.spec).{tsx,ts,jsx,js,html}') {
10
+ function createGlobPatternsForDependencies(dirPath, fileGlobPattern = '/**/*!(*.stories|*.spec).{tsx,ts,jsx,js,html}') {
11
11
  try {
12
12
  return (0, generate_globs_1.createGlobPatternsForDependencies)(dirPath, fileGlobPattern);
13
13
  }