Skip to content

Commit

Permalink
updates to support modular build system
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-rodgers committed Dec 14, 2021
1 parent f94e9a5 commit f0f8d5e
Show file tree
Hide file tree
Showing 47 changed files with 6,107 additions and 17,944 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"runtimeArgs": [],
"sourceMaps": true,
"outFiles": [],
"args": ["--retries", "0", "--verbose", "--logging", "--site", "https://318studios.sharepoint.com/sites/dev/08675be5-2bd0-42d9-9acf-0b8fca3788e2"],
"args": ["--retries", "0", "--verbose", "--logging"],
"console": "internalConsole",
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"**/node_modules": true,
"coverage": true,
".nyc_output": true,
"build": true,
"build": false,
"dist": true,
"site": true,
"buildsystem-config.js": true
Expand Down
1 change: 1 addition & 0 deletions buildsystem-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ export default <ConfigCollection>[
postPublishTasks: [],
},
<BuildSchema>{

name: "build-debug",

role: "build",
Expand Down
3 changes: 1 addition & 2 deletions debug/launch/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"module": "esnext",
"composite": false,
"baseUrl": ".",
"rootDir": "../../",
Expand Down
11 changes: 2 additions & 9 deletions debug/launch/v3-patrick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,11 @@ export async function Example(settings: ITestingSettings) {
},
})).using(PnPLogging(LogLevel.Verbose)); //.using(RequestRecorderCache(recordingPath, "record", () => false));

const web = sp.web;

web.on.log((msg) => console.log(msg));

web.on.data((d) => console.info(d));
const i = await sp.web();

const i = await web();


const web2 = sp.web;

const i2 = await web2();
console.log(i);

} catch (e) {

Expand Down
40 changes: 0 additions & 40 deletions docs/sp-addinhelpers/index.md

This file was deleted.

30 changes: 0 additions & 30 deletions docs/sp-addinhelpers/sp-request-executor-client.md

This file was deleted.

25 changes: 0 additions & 25 deletions docs/sp-addinhelpers/sp-rest-addin.md

This file was deleted.

4 changes: 0 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,6 @@ nav:
- Views: 'sp/views.md'
- Webs: 'sp/webs.md'
- 'Custom Request Client': 'sp/custom-irequestclient.md'
- sp-addinhelpers:
- sp-addinhelpers: 'sp-addinhelpers/index.md'
- SPRequestExecutorClient: 'sp-addinhelpers/sp-request-executor-client.md'
- SPRestAddIn: 'sp-addinhelpers/sp-rest-addin.md'
- Advanced:
- 'Custom Bundle': 'concepts/custom-bundle.md'
- 'Custom Call/Path': 'concepts/invokable.md'
Expand Down
Loading

0 comments on commit f0f8d5e

Please sign in to comment.