File tree Expand file tree Collapse file tree 17 files changed +886
-2699
lines changed
plugins/docusaurus-plugin-alumni Expand file tree Collapse file tree 17 files changed +886
-2699
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,11 @@ yarn-debug.log*
2121yarn-error.log *
2222
2323.eslintcache
24+
25+ .pnp. *
26+ .yarn /*
27+ ! .yarn /patches
28+ ! .yarn /plugins
29+ ! .yarn /releases
30+ ! .yarn /sdks
31+ ! .yarn /versions
Original file line number Diff line number Diff line change 1+ {
2+ "recommendations" : [
3+ " arcanis.vscode-zipfs" ,
4+ " dbaeumer.vscode-eslint" ,
5+ " esbenp.prettier-vscode"
6+ ]
7+ }
Original file line number Diff line number Diff line change 1+ {
2+ "search.exclude" : {
3+ "**/.yarn" : true ,
4+ "**/.pnp.*" : true
5+ },
6+ "eslint.nodePath" : " .yarn/sdks" ,
7+ "prettier.prettierPath" : " .yarn/sdks/prettier/index.js" ,
8+ "typescript.tsdk" : " .yarn/sdks/typescript/lib" ,
9+ "typescript.enablePromptUseWorkspaceTsdk" : true
10+ }
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+
3+ const { existsSync } = require ( `fs` ) ;
4+ const { createRequire, createRequireFromPath } = require ( `module` ) ;
5+ const { resolve } = require ( `path` ) ;
6+
7+ const relPnpApiPath = '../../../../.pnp.cjs' ;
8+
9+ const absPnpApiPath = resolve ( __dirname , relPnpApiPath ) ;
10+ const absRequire = ( createRequire || createRequireFromPath ) ( absPnpApiPath ) ;
11+
12+ if ( existsSync ( absPnpApiPath ) ) {
13+ if ( ! process . versions . pnp ) {
14+ // Setup the environment to be able to require eslint/bin/eslint.js
15+ require ( absPnpApiPath ) . setup ( ) ;
16+ }
17+ }
18+
19+ // Defer to the real eslint/bin/eslint.js your application uses
20+ module . exports = absRequire ( `eslint/bin/eslint.js` ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " eslint" ,
3+ "version" : " 8.4.1-sdk" ,
4+ "main" : " ./lib/api.js" ,
5+ "type" : " commonjs"
6+ }
Original file line number Diff line number Diff line change 1+ # This file is automatically generated by @yarnpkg/sdks.
2+ # Manual changes might be lost!
3+
4+ integrations :
5+ - vscode
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+
3+ const { existsSync } = require ( `fs` ) ;
4+ const { createRequire, createRequireFromPath } = require ( `module` ) ;
5+ const { resolve } = require ( `path` ) ;
6+
7+ const relPnpApiPath = '../../../.pnp.cjs' ;
8+
9+ const absPnpApiPath = resolve ( __dirname , relPnpApiPath ) ;
10+ const absRequire = ( createRequire || createRequireFromPath ) ( absPnpApiPath ) ;
11+
12+ if ( existsSync ( absPnpApiPath ) ) {
13+ if ( ! process . versions . pnp ) {
14+ // Setup the environment to be able to require prettier/index.js
15+ require ( absPnpApiPath ) . setup ( ) ;
16+ }
17+ }
18+
19+ // Defer to the real prettier/index.js your application uses
20+ module . exports = absRequire ( `prettier/index.js` ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " prettier" ,
3+ "version" : " 2.5.1-sdk" ,
4+ "main" : " ./index.js" ,
5+ "type" : " commonjs"
6+ }
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+
3+ const { existsSync} = require ( `fs` ) ;
4+ const { createRequire, createRequireFromPath} = require ( `module` ) ;
5+ const { resolve} = require ( `path` ) ;
6+
7+ const relPnpApiPath = "../../../../.pnp.cjs" ;
8+
9+ const absPnpApiPath = resolve ( __dirname , relPnpApiPath ) ;
10+ const absRequire = ( createRequire || createRequireFromPath ) ( absPnpApiPath ) ;
11+
12+ if ( existsSync ( absPnpApiPath ) ) {
13+ if ( ! process . versions . pnp ) {
14+ // Setup the environment to be able to require typescript/bin/tsc
15+ require ( absPnpApiPath ) . setup ( ) ;
16+ }
17+ }
18+
19+ // Defer to the real typescript/bin/tsc your application uses
20+ module . exports = absRequire ( `typescript/bin/tsc` ) ;
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+
3+ const { existsSync} = require ( `fs` ) ;
4+ const { createRequire, createRequireFromPath} = require ( `module` ) ;
5+ const { resolve} = require ( `path` ) ;
6+
7+ const relPnpApiPath = "../../../../.pnp.cjs" ;
8+
9+ const absPnpApiPath = resolve ( __dirname , relPnpApiPath ) ;
10+ const absRequire = ( createRequire || createRequireFromPath ) ( absPnpApiPath ) ;
11+
12+ if ( existsSync ( absPnpApiPath ) ) {
13+ if ( ! process . versions . pnp ) {
14+ // Setup the environment to be able to require typescript/bin/tsserver
15+ require ( absPnpApiPath ) . setup ( ) ;
16+ }
17+ }
18+
19+ // Defer to the real typescript/bin/tsserver your application uses
20+ module . exports = absRequire ( `typescript/bin/tsserver` ) ;
You can’t perform that action at this time.
0 commit comments