-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 8d0034a
Showing
21 changed files
with
540 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
patreon: koistya |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.yarn/* | ||
!.yarn/releases | ||
!.yarn/plugins | ||
!.yarn/sdks | ||
!.yarn/versions | ||
.pnp.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.github | ||
.vscode | ||
.yarn | ||
.yarnrc.yml | ||
.pnp.js | ||
tsconfig.json | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"recommendations": [ | ||
"arcanis.vscode-zipfs", | ||
"esbenp.prettier-vscode" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
}, | ||
"prettier.prettierPath": ".yarn/sdks/prettier/index.js", | ||
"typescript.tsdk": ".yarn/sdks/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This file is automatically generated by PnPify. | ||
# Manual changes will be lost! | ||
|
||
integrations: | ||
- vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env node | ||
|
||
const {existsSync} = require(`fs`); | ||
const {createRequire, createRequireFromPath} = require(`module`); | ||
const {resolve, dirname} = require(`path`); | ||
|
||
const relPnpApiPath = "../../../.pnp.js"; | ||
|
||
const absPnpApiPath = resolve(__dirname, relPnpApiPath); | ||
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath); | ||
|
||
if (existsSync(absPnpApiPath)) { | ||
if (!process.versions.pnp) { | ||
// Setup the environment to be able to require prettier/index.js | ||
require(absPnpApiPath).setup(); | ||
} | ||
|
||
const pnpifyResolution = require.resolve(`@yarnpkg/pnpify`, {paths: [dirname(absPnpApiPath)]}); | ||
if (typeof global[`__yarnpkg_sdk_is_using_pnpify__`] === `undefined`) { | ||
Object.defineProperty(global, `__yarnpkg_sdk_is_using_pnpify__`, {configurable: true, value: true}); | ||
|
||
process.env.NODE_OPTIONS += ` -r ${pnpifyResolution}`; | ||
|
||
// Apply PnPify to the current process | ||
absRequire(pnpifyResolution).patchFs(); | ||
} | ||
} | ||
|
||
// Defer to the real prettier/index.js your application uses | ||
module.exports = absRequire(`prettier/index.js`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"name": "prettier", | ||
"version": "2.2.1-pnpify", | ||
"main": "./index.js", | ||
"type": "commonjs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env node | ||
|
||
const {existsSync} = require(`fs`); | ||
const {createRequire, createRequireFromPath} = require(`module`); | ||
const {resolve} = require(`path`); | ||
|
||
const relPnpApiPath = "../../../../.pnp.js"; | ||
|
||
const absPnpApiPath = resolve(__dirname, relPnpApiPath); | ||
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath); | ||
|
||
if (existsSync(absPnpApiPath)) { | ||
if (!process.versions.pnp) { | ||
// Setup the environment to be able to require typescript/bin/tsc | ||
require(absPnpApiPath).setup(); | ||
} | ||
} | ||
|
||
// Defer to the real typescript/bin/tsc your application uses | ||
module.exports = absRequire(`typescript/bin/tsc`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env node | ||
|
||
const {existsSync} = require(`fs`); | ||
const {createRequire, createRequireFromPath} = require(`module`); | ||
const {resolve} = require(`path`); | ||
|
||
const relPnpApiPath = "../../../../.pnp.js"; | ||
|
||
const absPnpApiPath = resolve(__dirname, relPnpApiPath); | ||
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath); | ||
|
||
if (existsSync(absPnpApiPath)) { | ||
if (!process.versions.pnp) { | ||
// Setup the environment to be able to require typescript/bin/tsserver | ||
require(absPnpApiPath).setup(); | ||
} | ||
} | ||
|
||
// Defer to the real typescript/bin/tsserver your application uses | ||
module.exports = absRequire(`typescript/bin/tsserver`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env node | ||
|
||
const {existsSync} = require(`fs`); | ||
const {createRequire, createRequireFromPath} = require(`module`); | ||
const {resolve} = require(`path`); | ||
|
||
const relPnpApiPath = "../../../../.pnp.js"; | ||
|
||
const absPnpApiPath = resolve(__dirname, relPnpApiPath); | ||
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath); | ||
|
||
if (existsSync(absPnpApiPath)) { | ||
if (!process.versions.pnp) { | ||
// Setup the environment to be able to require typescript/lib/tsc.js | ||
require(absPnpApiPath).setup(); | ||
} | ||
} | ||
|
||
// Defer to the real typescript/lib/tsc.js your application uses | ||
module.exports = absRequire(`typescript/lib/tsc.js`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
#!/usr/bin/env node | ||
|
||
const {existsSync} = require(`fs`); | ||
const {createRequire, createRequireFromPath} = require(`module`); | ||
const {resolve} = require(`path`); | ||
|
||
const relPnpApiPath = "../../../../.pnp.js"; | ||
|
||
const absPnpApiPath = resolve(__dirname, relPnpApiPath); | ||
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath); | ||
|
||
const moduleWrapper = tsserver => { | ||
const {isAbsolute} = require(`path`); | ||
const pnpApi = require(`pnpapi`); | ||
|
||
const dependencyTreeRoots = new Set(pnpApi.getDependencyTreeRoots().map(locator => { | ||
return `${locator.name}@${locator.reference}`; | ||
})); | ||
|
||
// VSCode sends the zip paths to TS using the "zip://" prefix, that TS | ||
// doesn't understand. This layer makes sure to remove the protocol | ||
// before forwarding it to TS, and to add it back on all returned paths. | ||
|
||
function toEditorPath(str) { | ||
// We add the `zip:` prefix to both `.zip/` paths and virtual paths | ||
if (isAbsolute(str) && !str.match(/^\^zip:/) && (str.match(/\.zip\//) || str.match(/\$\$virtual\//))) { | ||
// We also take the opportunity to turn virtual paths into physical ones; | ||
// this makes is much easier to work with workspaces that list peer | ||
// dependencies, since otherwise Ctrl+Click would bring us to the virtual | ||
// file instances instead of the real ones. | ||
// | ||
// We only do this to modules owned by the the dependency tree roots. | ||
// This avoids breaking the resolution when jumping inside a vendor | ||
// with peer dep (otherwise jumping into react-dom would show resolution | ||
// errors on react). | ||
// | ||
const resolved = pnpApi.resolveVirtual(str); | ||
if (resolved) { | ||
const locator = pnpApi.findPackageLocator(resolved); | ||
if (locator && dependencyTreeRoots.has(`${locator.name}@${locator.reference}`)) { | ||
str = resolved; | ||
} | ||
} | ||
|
||
str = str.replace(/\\/g, `/`) | ||
str = str.replace(/^\/?/, `/`); | ||
|
||
// Absolute VSCode `Uri.fsPath`s need to start with a slash. | ||
// VSCode only adds it automatically for supported schemes, | ||
// so we have to do it manually for the `zip` scheme. | ||
// The path needs to start with a caret otherwise VSCode doesn't handle the protocol | ||
// | ||
// Ref: https://github.com/microsoft/vscode/issues/105014#issuecomment-686760910 | ||
// | ||
if (str.match(/\.zip\//)) { | ||
str = `${isVSCode ? `^` : ``}zip:${str}`; | ||
} | ||
} | ||
|
||
return str; | ||
} | ||
|
||
function fromEditorPath(str) { | ||
return process.platform === `win32` | ||
? str.replace(/^\^?zip:\//, ``) | ||
: str.replace(/^\^?zip:/, ``); | ||
} | ||
|
||
// And here is the point where we hijack the VSCode <-> TS communications | ||
// by adding ourselves in the middle. We locate everything that looks | ||
// like an absolute path of ours and normalize it. | ||
|
||
const Session = tsserver.server.Session; | ||
const {onMessage: originalOnMessage, send: originalSend} = Session.prototype; | ||
let isVSCode = false; | ||
|
||
return Object.assign(Session.prototype, { | ||
onMessage(/** @type {string} */ message) { | ||
const parsedMessage = JSON.parse(message) | ||
|
||
if ( | ||
parsedMessage != null && | ||
typeof parsedMessage === `object` && | ||
parsedMessage.arguments && | ||
parsedMessage.arguments.hostInfo === `vscode` | ||
) { | ||
isVSCode = true; | ||
} | ||
|
||
return originalOnMessage.call(this, JSON.stringify(parsedMessage, (key, value) => { | ||
return typeof value === `string` ? fromEditorPath(value) : value; | ||
})); | ||
}, | ||
|
||
send(/** @type {any} */ msg) { | ||
return originalSend.call(this, JSON.parse(JSON.stringify(msg, (key, value) => { | ||
return typeof value === `string` ? toEditorPath(value) : value; | ||
}))); | ||
} | ||
}); | ||
}; | ||
|
||
if (existsSync(absPnpApiPath)) { | ||
if (!process.versions.pnp) { | ||
// Setup the environment to be able to require typescript/lib/tsserver.js | ||
require(absPnpApiPath).setup(); | ||
} | ||
} | ||
|
||
// Defer to the real typescript/lib/tsserver.js your application uses | ||
module.exports = moduleWrapper(absRequire(`typescript/lib/tsserver.js`)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env node | ||
|
||
const {existsSync} = require(`fs`); | ||
const {createRequire, createRequireFromPath} = require(`module`); | ||
const {resolve} = require(`path`); | ||
|
||
const relPnpApiPath = "../../../../.pnp.js"; | ||
|
||
const absPnpApiPath = resolve(__dirname, relPnpApiPath); | ||
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath); | ||
|
||
if (existsSync(absPnpApiPath)) { | ||
if (!process.versions.pnp) { | ||
// Setup the environment to be able to require typescript/lib/typescript.js | ||
require(absPnpApiPath).setup(); | ||
} | ||
} | ||
|
||
// Defer to the real typescript/lib/typescript.js your application uses | ||
module.exports = absRequire(`typescript/lib/typescript.js`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"name": "typescript", | ||
"version": "4.1.5-pnpify", | ||
"main": "./lib/typescript.js", | ||
"type": "commonjs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
yarnPath: .yarn/releases/yarn-2.4.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License | ||
|
||
Copyright (c) 2021-present Kriasoft. All rights reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Ignore Webpack Plugin · [![npm package][npm-v]][npm] [![npm package][npm-dm]][npm] [![Discord][discord-badge]][discord] | ||
|
||
This [Webpack](https://webpack.js.org/) plugin excludes dynamically imported | ||
dependencies from the output bundle. This is often used for scenarios such as | ||
server-side rendering / pre-rendering (SSR). | ||
|
||
## Usage Example | ||
|
||
#### `webpack.config.js` | ||
|
||
```js | ||
const { IgnoreAsyncImportsPlugin } = require("ignore-webpack-plugin"); | ||
|
||
module.exports = [ | ||
// The core application bundle for browsers. | ||
{ | ||
name: "app", | ||
entry: "./src/index", | ||
/* ... other settings ... */ | ||
}, | ||
// Additional (reverse proxy) bundle for Cloudflare Workers. | ||
{ | ||
name: "proxy", | ||
entry: "./src/proxy", | ||
output: { filename: "proxy.js" }, | ||
target: "browserslist:last 2 Chrome versions", | ||
/* ... other settings ... */ | ||
plugins: [new IgnoreAsyncImportsPlugin()], | ||
}, | ||
]; | ||
``` | ||
|
||
## Related Projects | ||
|
||
- [Node.js API Starter](https://github.com/kriasoft/nodejs-api-starter) - Monorepo project template based on Yarn v2, GraphQL.js, React, and Relay. | ||
|
||
## Copyright | ||
|
||
Copyright © 2021-present Kriasoft. This source code is licensed under the MIT license found in the | ||
[LICENSE](https://github.com/kriasoft/ignore-webpack-plugin/blob/main/LICENSE) file. | ||
|
||
--- | ||
|
||
<sup>Made with ♥ by Konstantin Tarkus ([@koistya](https://twitter.com/koistya), [blog](https://medium.com/@koistya)) | ||
and [contributors](https://github.com/kriasoft/ignore-webpack-plugin/graphs/contributors).</sup> | ||
|
||
[npm]: https://www.npmjs.org/package/ignore-webpack-plugin | ||
[npm-v]: https://img.shields.io/npm/v/ignore-webpack-plugin?style=flat-square | ||
[npm-dm]: https://img.shields.io/npm/dm/ignore-webpack-plugin?style=flat-square | ||
[discord]: https://discord.gg/bSsv7XM | ||
[discord-badge]: https://img.shields.io/static/v1?logo=discord&label=&message=Join+us+on+Discord!&color=033&style=flat-square |
Oops, something went wrong.