@microsoft/sp-search-extensibility 1.16.0-beta.2 → 1.16.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.
Files changed (1) hide show
  1. package/package.json +25 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/sp-search-extensibility",
3
- "version": "1.16.0-beta.2",
3
+ "version": "1.16.0",
4
4
  "description": "SharePoint Framework developer support for customizing search",
5
5
  "license": "https://aka.ms/spfx/license",
6
6
  "homepage": "http://aka.ms/spfx",
@@ -10,15 +10,33 @@
10
10
  "tsdoc": {
11
11
  "tsdocFlavor": "AEDoc"
12
12
  },
13
- "scripts": {},
14
13
  "engines": {
15
14
  "node": ">=12.13.0 <13.0.0 || >=14.15.0 <15.0.0 || >=16.13.0 <17.0.0"
16
15
  },
17
16
  "dependencies": {
18
- "@microsoft/sp-core-library": "1.16.0-beta.2",
19
- "@microsoft/sp-diagnostics": "1.16.0-beta.2",
20
- "@microsoft/sp-extension-base": "1.16.0-beta.2",
21
- "@microsoft/sp-loader": "1.16.0-beta.2",
17
+ "@microsoft/sp-core-library": "1.16.0",
18
+ "@microsoft/sp-diagnostics": "1.16.0",
19
+ "@microsoft/sp-extension-base": "1.16.0",
20
+ "@microsoft/sp-loader": "1.16.0",
22
21
  "tslib": "2.3.1"
22
+ },
23
+ "devDependencies": {
24
+ "@ms/sp-tab-tasklib": "0.0.4",
25
+ "@ms/spfx-internal-web-build-rig": "0.1.0",
26
+ "@rushstack/heft": "0.47.11"
27
+ },
28
+ "scripts": {
29
+ "build": "heft test --clean",
30
+ "clean": "heft clean",
31
+ "deploy": "heft dev-deploy",
32
+ "start": "heft start --clean",
33
+ "test": "heft test --no-build",
34
+ "test-watch": "heft test --watch",
35
+ "build-watch": "heft build --lite",
36
+ "tab": "heft tab",
37
+ "_phase:build": "heft build --clean",
38
+ "_phase:test": "heft test --no-build",
39
+ "_phase:build-incremental": "heft build --lite",
40
+ "_phase:depscan": "heft depscan"
23
41
  }
24
- }
42
+ }