@metamask/snaps-webpack-plugin 3.1.1 → 3.2.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.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [3.2.0]
10
+ ### Added
11
+ - Add a manifest warning when no icon is found and when icon is not square ([#2185](https://github.com/MetaMask/snaps/pull/2185))
12
+
13
+ ### Changed
14
+ - Update warning messages ([#2186](https://github.com/MetaMask/snaps/pull/2186))
15
+ - Bump several MetaMask dependencies ([#2054](https://github.com/MetaMask/snaps/pull/2054), [#2100](https://github.com/MetaMask/snaps/pull/2100), [#2105](https://github.com/MetaMask/snaps/pull/2105), [#2173](https://github.com/MetaMask/snaps/pull/2173))
16
+
9
17
  ## [3.1.1]
10
18
  ### Changed
11
19
  - Bump several MetaMask dependencies ([#1964](https://github.com/MetaMask/snaps/pull/1964))
@@ -46,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
46
54
  - The version of the package no longer needs to match the version of all other
47
55
  MetaMask Snaps packages.
48
56
 
49
- [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-webpack-plugin@3.1.1...HEAD
57
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-webpack-plugin@3.2.0...HEAD
58
+ [3.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-webpack-plugin@3.1.1...@metamask/snaps-webpack-plugin@3.2.0
50
59
  [3.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-webpack-plugin@3.1.0...@metamask/snaps-webpack-plugin@3.1.1
51
60
  [3.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-webpack-plugin@3.0.1...@metamask/snaps-webpack-plugin@3.1.0
52
61
  [3.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-webpack-plugin@3.0.0...@metamask/snaps-webpack-plugin@3.0.1
@@ -59,7 +59,8 @@ class SnapsWebpackPlugin {
59
59
  inputSourceMap: devtool ? sourceMap : undefined
60
60
  });
61
61
  if (processed.warnings.length > 0) {
62
- compilation.warnings.push(new _webpack.WebpackError(`${PLUGIN_NAME}: Bundle Warning: Processing of the Snap bundle completed with warnings.\n${processed.warnings.join('\n')}`));
62
+ const webpackErrors = processed.warnings.map((warning)=>new _webpack.WebpackError(warning));
63
+ compilation.warnings.push(...webpackErrors);
63
64
  }
64
65
  const replacement = processed.sourceMap ? new _webpacksources.SourceMapSource(processed.code, assetName, processed.sourceMap, source, sourceMap) : new _webpacksources.RawSource(processed.code);
65
66
  // For some reason the type of `RawSource` is not compatible with
@@ -89,7 +90,7 @@ class SnapsWebpackPlugin {
89
90
  throw new Error(`Manifest Error: The manifest is invalid.\n${errors.join('\n')}`);
90
91
  }
91
92
  if (warnings.length > 0) {
92
- compilation.warnings.push(new _webpack.WebpackError(`${PLUGIN_NAME}: Manifest Warning: Validation of snap.manifest.json completed with warnings.\n${warnings.join('\n')}`));
93
+ compilation.warnings.push(...warnings.map((warning)=>new _webpack.WebpackError(warning)));
93
94
  }
94
95
  }
95
96
  });
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/plugin.ts"],"sourcesContent":["import { getErrorMessage } from '@metamask/snaps-sdk';\nimport type { PostProcessOptions, SourceMap } from '@metamask/snaps-utils';\nimport {\n checkManifest,\n evalBundle,\n postProcessBundle,\n useTemporaryFile,\n} from '@metamask/snaps-utils';\nimport { assert } from '@metamask/utils';\nimport pathUtils from 'path';\nimport { promisify } from 'util';\nimport type { Compiler } from 'webpack';\nimport { Compilation, WebpackError } from 'webpack';\nimport { RawSource, SourceMapSource } from 'webpack-sources';\n\nconst PLUGIN_NAME = 'SnapsWebpackPlugin';\n\ntype PluginOptions = {\n eval?: boolean;\n manifestPath?: string;\n writeManifest?: boolean;\n};\n\nexport type Options = PluginOptions &\n Omit<PostProcessOptions, 'sourceMap' | 'inputSourceMap'>;\n\nexport default class SnapsWebpackPlugin {\n public readonly options: Partial<Options>;\n\n /**\n * Construct an instance of the plugin.\n *\n * @param options - The post-process options.\n * @param options.stripComments - Whether to strip comments. Defaults to\n * `true`.\n * @param options.eval - Whether to evaluate the bundle to test SES\n * compatibility. Defaults to `true`.\n * @param options.manifestPath - The path to the manifest file. If provided,\n * the manifest will be validated. Defaults to\n * `process.cwd() + '/snap.manifest.json'`.\n * @param options.writeManifest - Whether to fix the manifest.\n * Defaults to `true`.\n */\n constructor(options?: Partial<Options>) {\n this.options = {\n eval: true,\n manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),\n writeManifest: true,\n ...options,\n };\n }\n\n /**\n * Apply the plugin to the Webpack compiler. Hooks into the `processAssets`\n * stage to process the bundle.\n *\n * @param compiler - The Webpack compiler.\n */\n apply(compiler: Compiler) {\n const { devtool } = compiler.options;\n\n compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {\n compilation.hooks.processAssets.tap(\n {\n name: PLUGIN_NAME,\n stage: Compilation.PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY,\n additionalAssets: true,\n },\n (assets) => {\n Object.keys(assets)\n .filter((assetName) => assetName.endsWith('.js'))\n .forEach((assetName) => {\n const asset = assets[assetName];\n const source = asset.source() as string;\n const sourceMap = asset.map();\n\n try {\n const processed = postProcessBundle(source, {\n ...this.options,\n sourceMap: Boolean(devtool),\n inputSourceMap: devtool\n ? (sourceMap as SourceMap)\n : undefined,\n });\n\n if (processed.warnings.length > 0) {\n compilation.warnings.push(\n new WebpackError(\n `${PLUGIN_NAME}: Bundle Warning: Processing of the Snap bundle completed with warnings.\\n${processed.warnings.join(\n '\\n',\n )}`,\n ),\n );\n }\n\n const replacement = processed.sourceMap\n ? new SourceMapSource(\n processed.code,\n assetName,\n processed.sourceMap,\n source,\n sourceMap as SourceMap,\n )\n : new RawSource(processed.code);\n\n // For some reason the type of `RawSource` is not compatible with\n // Webpack's own `Source`, but works fine when casting it to `any`.\n compilation.updateAsset(assetName, replacement as any);\n } catch (error) {\n compilation.errors.push(\n new WebpackError(getErrorMessage(error)),\n );\n }\n });\n },\n );\n });\n\n compiler.hooks.afterEmit.tapPromise(PLUGIN_NAME, async (compilation) => {\n const file = compilation\n .getAssets()\n .find((asset) => asset.name.endsWith('.js'));\n\n assert(file);\n\n assert(compilation.outputOptions.path);\n const outputPath = compilation.outputOptions.path;\n\n const filePath = pathUtils.join(outputPath, file.name);\n\n const bundleFile = await promisify(\n compiler.outputFileSystem.readFile.bind(compiler.outputFileSystem),\n )(filePath);\n assert(bundleFile);\n\n const bundleContent = bundleFile.toString();\n\n if (this.options.eval) {\n await useTemporaryFile('snaps-bundle.js', bundleContent, (path) =>\n evalBundle(path),\n );\n }\n\n if (this.options.manifestPath) {\n const { errors, warnings } = await checkManifest(\n pathUtils.dirname(this.options.manifestPath),\n this.options.writeManifest,\n bundleContent,\n promisify(\n compiler.outputFileSystem.writeFile.bind(compiler.outputFileSystem),\n ),\n );\n\n if (!this.options.writeManifest && errors.length > 0) {\n throw new Error(\n `Manifest Error: The manifest is invalid.\\n${errors.join('\\n')}`,\n );\n }\n\n if (warnings.length > 0) {\n compilation.warnings.push(\n new WebpackError(\n `${PLUGIN_NAME}: Manifest Warning: Validation of snap.manifest.json completed with warnings.\\n${warnings.join(\n '\\n',\n )}`,\n ),\n );\n }\n }\n });\n }\n}\n"],"names":["SnapsWebpackPlugin","PLUGIN_NAME","apply","compiler","devtool","options","hooks","compilation","tap","processAssets","name","stage","Compilation","PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY","additionalAssets","assets","Object","keys","filter","assetName","endsWith","forEach","asset","source","sourceMap","map","processed","postProcessBundle","Boolean","inputSourceMap","undefined","warnings","length","push","WebpackError","join","replacement","SourceMapSource","code","RawSource","updateAsset","error","errors","getErrorMessage","afterEmit","tapPromise","file","getAssets","find","assert","outputOptions","path","outputPath","filePath","pathUtils","bundleFile","promisify","outputFileSystem","readFile","bind","bundleContent","toString","eval","useTemporaryFile","evalBundle","manifestPath","checkManifest","dirname","writeManifest","writeFile","Error","constructor","process","cwd"],"mappings":"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"}
1
+ {"version":3,"sources":["../../src/plugin.ts"],"sourcesContent":["import { getErrorMessage } from '@metamask/snaps-sdk';\nimport type { PostProcessOptions, SourceMap } from '@metamask/snaps-utils';\nimport {\n checkManifest,\n evalBundle,\n postProcessBundle,\n useTemporaryFile,\n} from '@metamask/snaps-utils';\nimport { assert } from '@metamask/utils';\nimport pathUtils from 'path';\nimport { promisify } from 'util';\nimport type { Compiler } from 'webpack';\nimport { Compilation, WebpackError } from 'webpack';\nimport { RawSource, SourceMapSource } from 'webpack-sources';\n\nconst PLUGIN_NAME = 'SnapsWebpackPlugin';\n\ntype PluginOptions = {\n eval?: boolean;\n manifestPath?: string;\n writeManifest?: boolean;\n};\n\nexport type Options = PluginOptions &\n Omit<PostProcessOptions, 'sourceMap' | 'inputSourceMap'>;\n\nexport default class SnapsWebpackPlugin {\n public readonly options: Partial<Options>;\n\n /**\n * Construct an instance of the plugin.\n *\n * @param options - The post-process options.\n * @param options.stripComments - Whether to strip comments. Defaults to\n * `true`.\n * @param options.eval - Whether to evaluate the bundle to test SES\n * compatibility. Defaults to `true`.\n * @param options.manifestPath - The path to the manifest file. If provided,\n * the manifest will be validated. Defaults to\n * `process.cwd() + '/snap.manifest.json'`.\n * @param options.writeManifest - Whether to fix the manifest.\n * Defaults to `true`.\n */\n constructor(options?: Partial<Options>) {\n this.options = {\n eval: true,\n manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),\n writeManifest: true,\n ...options,\n };\n }\n\n /**\n * Apply the plugin to the Webpack compiler. Hooks into the `processAssets`\n * stage to process the bundle.\n *\n * @param compiler - The Webpack compiler.\n */\n apply(compiler: Compiler) {\n const { devtool } = compiler.options;\n\n compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {\n compilation.hooks.processAssets.tap(\n {\n name: PLUGIN_NAME,\n stage: Compilation.PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY,\n additionalAssets: true,\n },\n (assets) => {\n Object.keys(assets)\n .filter((assetName) => assetName.endsWith('.js'))\n .forEach((assetName) => {\n const asset = assets[assetName];\n const source = asset.source() as string;\n const sourceMap = asset.map();\n\n try {\n const processed = postProcessBundle(source, {\n ...this.options,\n sourceMap: Boolean(devtool),\n inputSourceMap: devtool\n ? (sourceMap as SourceMap)\n : undefined,\n });\n\n if (processed.warnings.length > 0) {\n const webpackErrors = processed.warnings.map(\n (warning) => new WebpackError(warning),\n );\n\n compilation.warnings.push(...webpackErrors);\n }\n\n const replacement = processed.sourceMap\n ? new SourceMapSource(\n processed.code,\n assetName,\n processed.sourceMap,\n source,\n sourceMap as SourceMap,\n )\n : new RawSource(processed.code);\n\n // For some reason the type of `RawSource` is not compatible with\n // Webpack's own `Source`, but works fine when casting it to `any`.\n compilation.updateAsset(assetName, replacement as any);\n } catch (error) {\n compilation.errors.push(\n new WebpackError(getErrorMessage(error)),\n );\n }\n });\n },\n );\n });\n\n compiler.hooks.afterEmit.tapPromise(PLUGIN_NAME, async (compilation) => {\n const file = compilation\n .getAssets()\n .find((asset) => asset.name.endsWith('.js'));\n\n assert(file);\n\n assert(compilation.outputOptions.path);\n const outputPath = compilation.outputOptions.path;\n\n const filePath = pathUtils.join(outputPath, file.name);\n\n const bundleFile = await promisify(\n compiler.outputFileSystem.readFile.bind(compiler.outputFileSystem),\n )(filePath);\n assert(bundleFile);\n\n const bundleContent = bundleFile.toString();\n\n if (this.options.eval) {\n await useTemporaryFile('snaps-bundle.js', bundleContent, (path) =>\n evalBundle(path),\n );\n }\n\n if (this.options.manifestPath) {\n const { errors, warnings } = await checkManifest(\n pathUtils.dirname(this.options.manifestPath),\n this.options.writeManifest,\n bundleContent,\n promisify(\n compiler.outputFileSystem.writeFile.bind(compiler.outputFileSystem),\n ),\n );\n\n if (!this.options.writeManifest && errors.length > 0) {\n throw new Error(\n `Manifest Error: The manifest is invalid.\\n${errors.join('\\n')}`,\n );\n }\n\n if (warnings.length > 0) {\n compilation.warnings.push(\n ...warnings.map((warning) => new WebpackError(warning)),\n );\n }\n }\n });\n }\n}\n"],"names":["SnapsWebpackPlugin","PLUGIN_NAME","apply","compiler","devtool","options","hooks","compilation","tap","processAssets","name","stage","Compilation","PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY","additionalAssets","assets","Object","keys","filter","assetName","endsWith","forEach","asset","source","sourceMap","map","processed","postProcessBundle","Boolean","inputSourceMap","undefined","warnings","length","webpackErrors","warning","WebpackError","push","replacement","SourceMapSource","code","RawSource","updateAsset","error","errors","getErrorMessage","afterEmit","tapPromise","file","getAssets","find","assert","outputOptions","path","outputPath","filePath","pathUtils","join","bundleFile","promisify","outputFileSystem","readFile","bind","bundleContent","toString","eval","useTemporaryFile","evalBundle","manifestPath","checkManifest","dirname","writeManifest","writeFile","Error","constructor","process","cwd"],"mappings":"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"}
@@ -44,7 +44,8 @@ class SnapsWebpackPlugin {
44
44
  inputSourceMap: devtool ? sourceMap : undefined
45
45
  });
46
46
  if (processed.warnings.length > 0) {
47
- compilation.warnings.push(new WebpackError(`${PLUGIN_NAME}: Bundle Warning: Processing of the Snap bundle completed with warnings.\n${processed.warnings.join('\n')}`));
47
+ const webpackErrors = processed.warnings.map((warning)=>new WebpackError(warning));
48
+ compilation.warnings.push(...webpackErrors);
48
49
  }
49
50
  const replacement = processed.sourceMap ? new SourceMapSource(processed.code, assetName, processed.sourceMap, source, sourceMap) : new RawSource(processed.code);
50
51
  // For some reason the type of `RawSource` is not compatible with
@@ -74,7 +75,7 @@ class SnapsWebpackPlugin {
74
75
  throw new Error(`Manifest Error: The manifest is invalid.\n${errors.join('\n')}`);
75
76
  }
76
77
  if (warnings.length > 0) {
77
- compilation.warnings.push(new WebpackError(`${PLUGIN_NAME}: Manifest Warning: Validation of snap.manifest.json completed with warnings.\n${warnings.join('\n')}`));
78
+ compilation.warnings.push(...warnings.map((warning)=>new WebpackError(warning)));
78
79
  }
79
80
  }
80
81
  });
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/plugin.ts"],"sourcesContent":["import { getErrorMessage } from '@metamask/snaps-sdk';\nimport type { PostProcessOptions, SourceMap } from '@metamask/snaps-utils';\nimport {\n checkManifest,\n evalBundle,\n postProcessBundle,\n useTemporaryFile,\n} from '@metamask/snaps-utils';\nimport { assert } from '@metamask/utils';\nimport pathUtils from 'path';\nimport { promisify } from 'util';\nimport type { Compiler } from 'webpack';\nimport { Compilation, WebpackError } from 'webpack';\nimport { RawSource, SourceMapSource } from 'webpack-sources';\n\nconst PLUGIN_NAME = 'SnapsWebpackPlugin';\n\ntype PluginOptions = {\n eval?: boolean;\n manifestPath?: string;\n writeManifest?: boolean;\n};\n\nexport type Options = PluginOptions &\n Omit<PostProcessOptions, 'sourceMap' | 'inputSourceMap'>;\n\nexport default class SnapsWebpackPlugin {\n public readonly options: Partial<Options>;\n\n /**\n * Construct an instance of the plugin.\n *\n * @param options - The post-process options.\n * @param options.stripComments - Whether to strip comments. Defaults to\n * `true`.\n * @param options.eval - Whether to evaluate the bundle to test SES\n * compatibility. Defaults to `true`.\n * @param options.manifestPath - The path to the manifest file. If provided,\n * the manifest will be validated. Defaults to\n * `process.cwd() + '/snap.manifest.json'`.\n * @param options.writeManifest - Whether to fix the manifest.\n * Defaults to `true`.\n */\n constructor(options?: Partial<Options>) {\n this.options = {\n eval: true,\n manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),\n writeManifest: true,\n ...options,\n };\n }\n\n /**\n * Apply the plugin to the Webpack compiler. Hooks into the `processAssets`\n * stage to process the bundle.\n *\n * @param compiler - The Webpack compiler.\n */\n apply(compiler: Compiler) {\n const { devtool } = compiler.options;\n\n compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {\n compilation.hooks.processAssets.tap(\n {\n name: PLUGIN_NAME,\n stage: Compilation.PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY,\n additionalAssets: true,\n },\n (assets) => {\n Object.keys(assets)\n .filter((assetName) => assetName.endsWith('.js'))\n .forEach((assetName) => {\n const asset = assets[assetName];\n const source = asset.source() as string;\n const sourceMap = asset.map();\n\n try {\n const processed = postProcessBundle(source, {\n ...this.options,\n sourceMap: Boolean(devtool),\n inputSourceMap: devtool\n ? (sourceMap as SourceMap)\n : undefined,\n });\n\n if (processed.warnings.length > 0) {\n compilation.warnings.push(\n new WebpackError(\n `${PLUGIN_NAME}: Bundle Warning: Processing of the Snap bundle completed with warnings.\\n${processed.warnings.join(\n '\\n',\n )}`,\n ),\n );\n }\n\n const replacement = processed.sourceMap\n ? new SourceMapSource(\n processed.code,\n assetName,\n processed.sourceMap,\n source,\n sourceMap as SourceMap,\n )\n : new RawSource(processed.code);\n\n // For some reason the type of `RawSource` is not compatible with\n // Webpack's own `Source`, but works fine when casting it to `any`.\n compilation.updateAsset(assetName, replacement as any);\n } catch (error) {\n compilation.errors.push(\n new WebpackError(getErrorMessage(error)),\n );\n }\n });\n },\n );\n });\n\n compiler.hooks.afterEmit.tapPromise(PLUGIN_NAME, async (compilation) => {\n const file = compilation\n .getAssets()\n .find((asset) => asset.name.endsWith('.js'));\n\n assert(file);\n\n assert(compilation.outputOptions.path);\n const outputPath = compilation.outputOptions.path;\n\n const filePath = pathUtils.join(outputPath, file.name);\n\n const bundleFile = await promisify(\n compiler.outputFileSystem.readFile.bind(compiler.outputFileSystem),\n )(filePath);\n assert(bundleFile);\n\n const bundleContent = bundleFile.toString();\n\n if (this.options.eval) {\n await useTemporaryFile('snaps-bundle.js', bundleContent, (path) =>\n evalBundle(path),\n );\n }\n\n if (this.options.manifestPath) {\n const { errors, warnings } = await checkManifest(\n pathUtils.dirname(this.options.manifestPath),\n this.options.writeManifest,\n bundleContent,\n promisify(\n compiler.outputFileSystem.writeFile.bind(compiler.outputFileSystem),\n ),\n );\n\n if (!this.options.writeManifest && errors.length > 0) {\n throw new Error(\n `Manifest Error: The manifest is invalid.\\n${errors.join('\\n')}`,\n );\n }\n\n if (warnings.length > 0) {\n compilation.warnings.push(\n new WebpackError(\n `${PLUGIN_NAME}: Manifest Warning: Validation of snap.manifest.json completed with warnings.\\n${warnings.join(\n '\\n',\n )}`,\n ),\n );\n }\n }\n });\n }\n}\n"],"names":["getErrorMessage","checkManifest","evalBundle","postProcessBundle","useTemporaryFile","assert","pathUtils","promisify","Compilation","WebpackError","RawSource","SourceMapSource","PLUGIN_NAME","SnapsWebpackPlugin","apply","compiler","devtool","options","hooks","compilation","tap","processAssets","name","stage","PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY","additionalAssets","assets","Object","keys","filter","assetName","endsWith","forEach","asset","source","sourceMap","map","processed","Boolean","inputSourceMap","undefined","warnings","length","push","join","replacement","code","updateAsset","error","errors","afterEmit","tapPromise","file","getAssets","find","outputOptions","path","outputPath","filePath","bundleFile","outputFileSystem","readFile","bind","bundleContent","toString","eval","manifestPath","dirname","writeManifest","writeFile","Error","constructor","process","cwd"],"mappings":";;;;;;;;;;;;;AAAA,SAASA,eAAe,QAAQ,sBAAsB;AAEtD,SACEC,aAAa,EACbC,UAAU,EACVC,iBAAiB,EACjBC,gBAAgB,QACX,wBAAwB;AAC/B,SAASC,MAAM,QAAQ,kBAAkB;AACzC,OAAOC,eAAe,OAAO;AAC7B,SAASC,SAAS,QAAQ,OAAO;AAEjC,SAASC,WAAW,EAAEC,YAAY,QAAQ,UAAU;AACpD,SAASC,SAAS,EAAEC,eAAe,QAAQ,kBAAkB;AAE7D,MAAMC,cAAc;AAWL,MAAMC;IA0BnB;;;;;GAKC,GACDC,MAAMC,QAAkB,EAAE;QACxB,MAAM,EAAEC,OAAO,EAAE,GAAGD,SAASE,OAAO;QAEpCF,SAASG,KAAK,CAACC,WAAW,CAACC,GAAG,CAACR,aAAa,CAACO;YAC3CA,YAAYD,KAAK,CAACG,aAAa,CAACD,GAAG,CACjC;gBACEE,MAAMV;gBACNW,OAAOf,YAAYgB,2CAA2C;gBAC9DC,kBAAkB;YACpB,GACA,CAACC;gBACCC,OAAOC,IAAI,CAACF,QACTG,MAAM,CAAC,CAACC,YAAcA,UAAUC,QAAQ,CAAC,QACzCC,OAAO,CAAC,CAACF;oBACR,MAAMG,QAAQP,MAAM,CAACI,UAAU;oBAC/B,MAAMI,SAASD,MAAMC,MAAM;oBAC3B,MAAMC,YAAYF,MAAMG,GAAG;oBAE3B,IAAI;wBACF,MAAMC,YAAYlC,kBAAkB+B,QAAQ;4BAC1C,GAAG,IAAI,CAACjB,OAAO;4BACfkB,WAAWG,QAAQtB;4BACnBuB,gBAAgBvB,UACXmB,YACDK;wBACN;wBAEA,IAAIH,UAAUI,QAAQ,CAACC,MAAM,GAAG,GAAG;4BACjCvB,YAAYsB,QAAQ,CAACE,IAAI,CACvB,IAAIlC,aACF,CAAC,EAAEG,YAAY,0EAA0E,EAAEyB,UAAUI,QAAQ,CAACG,IAAI,CAChH,MACA,CAAC;wBAGT;wBAEA,MAAMC,cAAcR,UAAUF,SAAS,GACnC,IAAIxB,gBACF0B,UAAUS,IAAI,EACdhB,WACAO,UAAUF,SAAS,EACnBD,QACAC,aAEF,IAAIzB,UAAU2B,UAAUS,IAAI;wBAEhC,iEAAiE;wBACjE,mEAAmE;wBACnE3B,YAAY4B,WAAW,CAACjB,WAAWe;oBACrC,EAAE,OAAOG,OAAO;wBACd7B,YAAY8B,MAAM,CAACN,IAAI,CACrB,IAAIlC,aAAaT,gBAAgBgD;oBAErC;gBACF;YACJ;QAEJ;QAEAjC,SAASG,KAAK,CAACgC,SAAS,CAACC,UAAU,CAACvC,aAAa,OAAOO;YACtD,MAAMiC,OAAOjC,YACVkC,SAAS,GACTC,IAAI,CAAC,CAACrB,QAAUA,MAAMX,IAAI,CAACS,QAAQ,CAAC;YAEvC1B,OAAO+C;YAEP/C,OAAOc,YAAYoC,aAAa,CAACC,IAAI;YACrC,MAAMC,aAAatC,YAAYoC,aAAa,CAACC,IAAI;YAEjD,MAAME,WAAWpD,UAAUsC,IAAI,CAACa,YAAYL,KAAK9B,IAAI;YAErD,MAAMqC,aAAa,MAAMpD,UACvBQ,SAAS6C,gBAAgB,CAACC,QAAQ,CAACC,IAAI,CAAC/C,SAAS6C,gBAAgB,GACjEF;YACFrD,OAAOsD;YAEP,MAAMI,gBAAgBJ,WAAWK,QAAQ;YAEzC,IAAI,IAAI,CAAC/C,OAAO,CAACgD,IAAI,EAAE;gBACrB,MAAM7D,iBAAiB,mBAAmB2D,eAAe,CAACP,OACxDtD,WAAWsD;YAEf;YAEA,IAAI,IAAI,CAACvC,OAAO,CAACiD,YAAY,EAAE;gBAC7B,MAAM,EAAEjB,MAAM,EAAER,QAAQ,EAAE,GAAG,MAAMxC,cACjCK,UAAU6D,OAAO,CAAC,IAAI,CAAClD,OAAO,CAACiD,YAAY,GAC3C,IAAI,CAACjD,OAAO,CAACmD,aAAa,EAC1BL,eACAxD,UACEQ,SAAS6C,gBAAgB,CAACS,SAAS,CAACP,IAAI,CAAC/C,SAAS6C,gBAAgB;gBAItE,IAAI,CAAC,IAAI,CAAC3C,OAAO,CAACmD,aAAa,IAAInB,OAAOP,MAAM,GAAG,GAAG;oBACpD,MAAM,IAAI4B,MACR,CAAC,0CAA0C,EAAErB,OAAOL,IAAI,CAAC,MAAM,CAAC;gBAEpE;gBAEA,IAAIH,SAASC,MAAM,GAAG,GAAG;oBACvBvB,YAAYsB,QAAQ,CAACE,IAAI,CACvB,IAAIlC,aACF,CAAC,EAAEG,YAAY,+EAA+E,EAAE6B,SAASG,IAAI,CAC3G,MACA,CAAC;gBAGT;YACF;QACF;IACF;IA7IA;;;;;;;;;;;;;GAaC,GACD2B,YAAYtD,OAA0B,CAAE;QAhBxC,uBAAgBA,WAAhB,KAAA;QAiBE,IAAI,CAACA,OAAO,GAAG;YACbgD,MAAM;YACNC,cAAc5D,UAAUsC,IAAI,CAAC4B,QAAQC,GAAG,IAAI;YAC5CL,eAAe;YACf,GAAGnD,OAAO;QACZ;IACF;AAyHF;AAjJA,SAAqBJ,gCAiJpB"}
1
+ {"version":3,"sources":["../../src/plugin.ts"],"sourcesContent":["import { getErrorMessage } from '@metamask/snaps-sdk';\nimport type { PostProcessOptions, SourceMap } from '@metamask/snaps-utils';\nimport {\n checkManifest,\n evalBundle,\n postProcessBundle,\n useTemporaryFile,\n} from '@metamask/snaps-utils';\nimport { assert } from '@metamask/utils';\nimport pathUtils from 'path';\nimport { promisify } from 'util';\nimport type { Compiler } from 'webpack';\nimport { Compilation, WebpackError } from 'webpack';\nimport { RawSource, SourceMapSource } from 'webpack-sources';\n\nconst PLUGIN_NAME = 'SnapsWebpackPlugin';\n\ntype PluginOptions = {\n eval?: boolean;\n manifestPath?: string;\n writeManifest?: boolean;\n};\n\nexport type Options = PluginOptions &\n Omit<PostProcessOptions, 'sourceMap' | 'inputSourceMap'>;\n\nexport default class SnapsWebpackPlugin {\n public readonly options: Partial<Options>;\n\n /**\n * Construct an instance of the plugin.\n *\n * @param options - The post-process options.\n * @param options.stripComments - Whether to strip comments. Defaults to\n * `true`.\n * @param options.eval - Whether to evaluate the bundle to test SES\n * compatibility. Defaults to `true`.\n * @param options.manifestPath - The path to the manifest file. If provided,\n * the manifest will be validated. Defaults to\n * `process.cwd() + '/snap.manifest.json'`.\n * @param options.writeManifest - Whether to fix the manifest.\n * Defaults to `true`.\n */\n constructor(options?: Partial<Options>) {\n this.options = {\n eval: true,\n manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),\n writeManifest: true,\n ...options,\n };\n }\n\n /**\n * Apply the plugin to the Webpack compiler. Hooks into the `processAssets`\n * stage to process the bundle.\n *\n * @param compiler - The Webpack compiler.\n */\n apply(compiler: Compiler) {\n const { devtool } = compiler.options;\n\n compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {\n compilation.hooks.processAssets.tap(\n {\n name: PLUGIN_NAME,\n stage: Compilation.PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY,\n additionalAssets: true,\n },\n (assets) => {\n Object.keys(assets)\n .filter((assetName) => assetName.endsWith('.js'))\n .forEach((assetName) => {\n const asset = assets[assetName];\n const source = asset.source() as string;\n const sourceMap = asset.map();\n\n try {\n const processed = postProcessBundle(source, {\n ...this.options,\n sourceMap: Boolean(devtool),\n inputSourceMap: devtool\n ? (sourceMap as SourceMap)\n : undefined,\n });\n\n if (processed.warnings.length > 0) {\n const webpackErrors = processed.warnings.map(\n (warning) => new WebpackError(warning),\n );\n\n compilation.warnings.push(...webpackErrors);\n }\n\n const replacement = processed.sourceMap\n ? new SourceMapSource(\n processed.code,\n assetName,\n processed.sourceMap,\n source,\n sourceMap as SourceMap,\n )\n : new RawSource(processed.code);\n\n // For some reason the type of `RawSource` is not compatible with\n // Webpack's own `Source`, but works fine when casting it to `any`.\n compilation.updateAsset(assetName, replacement as any);\n } catch (error) {\n compilation.errors.push(\n new WebpackError(getErrorMessage(error)),\n );\n }\n });\n },\n );\n });\n\n compiler.hooks.afterEmit.tapPromise(PLUGIN_NAME, async (compilation) => {\n const file = compilation\n .getAssets()\n .find((asset) => asset.name.endsWith('.js'));\n\n assert(file);\n\n assert(compilation.outputOptions.path);\n const outputPath = compilation.outputOptions.path;\n\n const filePath = pathUtils.join(outputPath, file.name);\n\n const bundleFile = await promisify(\n compiler.outputFileSystem.readFile.bind(compiler.outputFileSystem),\n )(filePath);\n assert(bundleFile);\n\n const bundleContent = bundleFile.toString();\n\n if (this.options.eval) {\n await useTemporaryFile('snaps-bundle.js', bundleContent, (path) =>\n evalBundle(path),\n );\n }\n\n if (this.options.manifestPath) {\n const { errors, warnings } = await checkManifest(\n pathUtils.dirname(this.options.manifestPath),\n this.options.writeManifest,\n bundleContent,\n promisify(\n compiler.outputFileSystem.writeFile.bind(compiler.outputFileSystem),\n ),\n );\n\n if (!this.options.writeManifest && errors.length > 0) {\n throw new Error(\n `Manifest Error: The manifest is invalid.\\n${errors.join('\\n')}`,\n );\n }\n\n if (warnings.length > 0) {\n compilation.warnings.push(\n ...warnings.map((warning) => new WebpackError(warning)),\n );\n }\n }\n });\n }\n}\n"],"names":["getErrorMessage","checkManifest","evalBundle","postProcessBundle","useTemporaryFile","assert","pathUtils","promisify","Compilation","WebpackError","RawSource","SourceMapSource","PLUGIN_NAME","SnapsWebpackPlugin","apply","compiler","devtool","options","hooks","compilation","tap","processAssets","name","stage","PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY","additionalAssets","assets","Object","keys","filter","assetName","endsWith","forEach","asset","source","sourceMap","map","processed","Boolean","inputSourceMap","undefined","warnings","length","webpackErrors","warning","push","replacement","code","updateAsset","error","errors","afterEmit","tapPromise","file","getAssets","find","outputOptions","path","outputPath","filePath","join","bundleFile","outputFileSystem","readFile","bind","bundleContent","toString","eval","manifestPath","dirname","writeManifest","writeFile","Error","constructor","process","cwd"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/snaps-webpack-plugin",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "keywords": [
5
5
  "webpack",
6
6
  "plugin"
@@ -39,14 +39,14 @@
39
39
  "lint:dependencies": "depcheck"
40
40
  },
41
41
  "dependencies": {
42
- "@metamask/snaps-sdk": "^1.2.0",
43
- "@metamask/snaps-utils": "^5.0.0",
44
- "@metamask/utils": "^8.2.1",
42
+ "@metamask/snaps-sdk": "^2.1.0",
43
+ "@metamask/snaps-utils": "^6.1.0",
44
+ "@metamask/utils": "^8.3.0",
45
45
  "webpack-sources": "^3.2.3"
46
46
  },
47
47
  "devDependencies": {
48
- "@lavamoat/allow-scripts": "^2.5.1",
49
- "@metamask/auto-changelog": "^3.4.3",
48
+ "@lavamoat/allow-scripts": "^3.0.2",
49
+ "@metamask/auto-changelog": "^3.4.4",
50
50
  "@metamask/eslint-config": "^12.1.0",
51
51
  "@metamask/eslint-config-jest": "^12.1.0",
52
52
  "@metamask/eslint-config-nodejs": "^12.1.0",