@pnp/spfx-controls-react 3.18.0-beta.8148100 → 3.18.0-beta.8148142

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.
@@ -1,2 +1,2 @@
1
- export var version = "3.18.0-beta.8148100";
1
+ export var version = "3.18.0-beta.8148142";
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@pnp/spfx-controls-react",
3
3
  "description": "Reusable React controls for SharePoint Framework solutions",
4
- "version": "3.18.0-beta.8148100",
4
+ "version": "3.18.0-beta.8148142",
5
5
  "node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0",
6
6
  "scripts": {
7
7
  "build": "gulp build",
8
8
  "clean": "gulp clean",
9
9
  "test": "gulp test",
10
10
  "test:unit": "npx jest --silent --maxWorkers=4",
11
- "serve": "gulp bundle --custom-serve --max_old_space_size=4096 && fast-serve",
11
+ "serve": "fast-serve",
12
12
  "prepublishOnly": "gulp",
13
13
  "versionUpdater": "gulp versionUpdater",
14
14
  "karma": "karma start --circle true",
@@ -125,7 +125,7 @@
125
125
  "react-test-renderer": "17.0.1",
126
126
  "request-promise": "4.2.5",
127
127
  "sonarqube-scanner": "2.8.2",
128
- "spfx-fast-serve-helpers": "1.18.4",
128
+ "spfx-fast-serve-helpers": "1.18.11",
129
129
  "ts-jest": "^29.1.1",
130
130
  "tslib": "2.3.1",
131
131
  "typescript": "4.7.4",
@@ -1,6 +0,0 @@
1
- {
2
- "$schema": "https://raw.githubusercontent.com/s-KaiNet/spfx-fast-serve/master/schema/config.1.1.schema.json",
3
- "cli": {
4
- "isLibraryComponent": false
5
- }
6
- }
@@ -1,24 +0,0 @@
1
- /*
2
- * User webpack settings file. You can add your own settings here.
3
- * Changes from this file will be merged into the base webpack configuration file.
4
- * This file will not be overwritten by the subsequent spfx-fast-serve calls.
5
- */
6
-
7
- // you can add your project related webpack configuration here, it will be merged using webpack-merge module
8
- // i.e. plugins: [new webpack.Plugin()]
9
- const webpackConfig = {
10
-
11
- }
12
-
13
- // for even more fine-grained control, you can apply custom webpack settings using below function
14
- const transformConfig = function (initialWebpackConfig) {
15
- // transform the initial webpack config here, i.e.
16
- // initialWebpackConfig.plugins.push(new webpack.Plugin()); etc.
17
-
18
- return initialWebpackConfig;
19
- }
20
-
21
- module.exports = {
22
- webpackConfig,
23
- transformConfig
24
- }