@pnp/spfx-property-controls 3.17.0-beta.8147677 → 3.17.0-beta.8148201

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/CHANGELOG.json CHANGED
@@ -4,10 +4,14 @@
4
4
  "version": "3.17.0",
5
5
  "changes": {
6
6
  "new": [],
7
- "enhancements": [],
7
+ "enhancements": [
8
+ "`fast-serve`: ast-serve update to match the most recent changes. [#606](https://github.com/pnp/sp-dev-fx-property-controls/pull/606)"
9
+ ],
8
10
  "fixes": []
9
11
  },
10
- "contributions": []
12
+ "contributions": [
13
+ "[Sergei Sergeev](https://github.com/s-KaiNet)"
14
+ ]
11
15
  },
12
16
  {
13
17
  "version": "3.16.0",
@@ -1,2 +1,2 @@
1
- export var version = "3.17.0-beta.8147677";
1
+ export var version = "3.17.0-beta.8148201";
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pnp/spfx-property-controls",
3
3
  "description": "Reusable property pane controls for SharePoint Framework solutions",
4
- "version": "3.17.0-beta.8147677",
4
+ "version": "3.17.0-beta.8148201",
5
5
  "engines": {
6
6
  "node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0"
7
7
  },
@@ -9,7 +9,7 @@
9
9
  "build": "gulp build",
10
10
  "clean": "gulp clean",
11
11
  "test": "gulp test",
12
- "serve": "gulp bundle --custom-serve --max_old_space_size=4096 && fast-serve",
12
+ "serve": "fast-serve",
13
13
  "versionUpdater": "gulp versionUpdater",
14
14
  "prepublishOnly": "gulp",
15
15
  "changelog": "node scripts/create-changelog.js && node scripts/sync-changelogs.js && gulp versionUpdater",
@@ -69,7 +69,7 @@
69
69
  "husky": "^6.0.0",
70
70
  "request-promise": "4.2.6",
71
71
  "sonarqube-scanner": "2.8.2",
72
- "spfx-fast-serve-helpers": "~1.17.3",
72
+ "spfx-fast-serve-helpers": "1.18.11",
73
73
  "typescript": "4.7.4",
74
74
  "uuid": "^9.0.1"
75
75
  },
@@ -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
- }