Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@parcel/core: The plugin "@parcel/packager-svg" is not compatible with the current version of Parcel. #6854

Closed
folknor opened this issue Sep 1, 2021 · 9 comments Β· Fixed by #7207

Comments

@folknor
Copy link

folknor commented Sep 1, 2021

πŸ› bug report

Build fails, look below for output and possible solution πŸ‘

package.json

  40   β”‚         "@parcel/optimizer-cssnano": "nightly",
  41   β”‚         "@parcel/optimizer-htmlnano": "nightly",
  42   β”‚         "@parcel/packager-css": "nightly",
  43   β”‚         "@parcel/packager-html": "nightly",
  44   β”‚         "@parcel/packager-raw-url": "nightly",
  45   β”‚         "@parcel/packager-svg": "nightly",
  46   β”‚         "@parcel/transformer-css": "nightly",
  47   β”‚         "@parcel/transformer-html": "nightly",
  48   β”‚         "@parcel/transformer-image": "nightly",
  49   β”‚         "@parcel/transformer-postcss": "nightly",
  50   β”‚         "@parcel/transformer-posthtml": "nightly",
  51   β”‚         "@parcel/transformer-sass": "nightly",
  52   β”‚         "@parcel/transformer-webmanifest": "nightly",
...
  58   β”‚         "parcel": "nightly",

πŸ€” Expected Behavior

Should build as normal.

I've tried this with nuking node_modules and related files/locks/etc with npm 7.20+, yarn 3.0.0 and pnpm 6.14.x+ using both npm run and pnpm run.

😯 Current Behavior

🚨 Build failed.

@parcel/core: The plugin "@parcel/packager-svg" is not compatible with the current version of Parcel. Requires "^2.0.0-rc.0" but the current version is "2.0.0-nightly.817+461de114".

  /home/test/test/node_modules/.pnpm/@parcel+packager-svg@2.0.0-nightly.2441_@parcel+core@2.0.0-nightly.817/node_modules/@parcel/packager-svg/package.json:20:5
    19 |     "node": ">= 12.0.0",
  > 20 |     "parcel": "^2.0.0-rc.0"
  >    |     ^^^^^^^^^^^^^^^^^^^^^^^
    21 |   },
    22 |   "dependencies": {

(same result with earlier and later nightlies)

πŸ’ Possible Solution

Depend on ">=2.0.0-nightly" instead of "^2.0.0-rc.0" maybe? I'm not sure what is better, these semver ranges don't really concern me - all my projects use "latest" or "nightly" or whatever and when a problem crops up I just solve it and apply the fix to every project immediately.

$ npm i -g semver@5.4.1
...
$ npx semver -r '^2.0.0-rc.0' '2.0.0-nightly.817+461de114' '2.0.0-rc.0'
2.0.0-rc.0
$ npx semver -r '>=2.0.0-nightly' '2.0.0-nightly.817+461de114' '2.0.0-rc.0'
2.0.0-nightly.817
2.0.0-rc.0

(I picked 5.4.1 because it's what is used here https://github.com/parcel-bundler/parcel/blob/v2/packages/transformers/js/package.json#L43 but it's the same result with the most recent release of https://github.com/npm/node-semver; 7.3.5)

See #6828 (comment)

Thank you!

@folknor
Copy link
Author

folknor commented Sep 1, 2021

So the way I "fixed" it temporarily locally is I just edited package.json in node_modules/@parcel/packager-svg to say "parcel": ">= 2.0.0-nightly" and everything builds as expected.

@AndrewKvalheim
Copy link
Contributor

Looks like #6911

@folknor
Copy link
Author

folknor commented Sep 12, 2021

Looks like #6911

Yes, indeed! Works in the latest nightly with that commit.

@folknor folknor closed this as completed Sep 12, 2021
@folknor
Copy link
Author

folknor commented Oct 15, 2021

Same problem has surfaced again now after the 2.0.0 release;

[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-dev-server" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-dev-server" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-dev-server" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-dev-server" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
 ELIFECYCLE  Command failed with exit code 1.
 ELIFECYCLE  Command failed with exit code 1.
 ELIFECYCLE  Command failed with exit code 1.

@folknor folknor reopened this Oct 15, 2021
@devongovett
Copy link
Member

Make sure you updated all of the plugins you have installed and verified that your lock file isn't causing older versions to stay installed

@folknor
Copy link
Author

folknor commented Oct 15, 2021

I get the same error using both pnpm and yarn 3.0 after completely nuking node_modules and all related lock files, etc, with fresh installs of all packages. What follows is the entire terminal backlog, but my guess is that reading it is a complete dead end and waste of time.

/test/ $ rm -rf node_modules
/test/ $ rm pnpm-lock.yaml
rm: remove regular file 'pnpm-lock.yaml'? y
/test/ $ which up
up: aliased to pnpm up
/test/ $ up
 WARN  @parcel/optimizer-cssnano > @parcel/plugin > @parcel/types: @parcel/cache@2.0.0-nightly.887 requires a peer of @parcel/core@^2.0.0 but none was installed.
 WARN  @parcel/optimizer-cssnano > @parcel/plugin > @parcel/types > @parcel/fs > @parcel/types > @parcel/package-manager > @parcel/fs > @parcel/types: @parcel/workers@2.0.0-nightly.887 requires a peer of @parcel/core@^2.0.0 but none was installed.
 WARN  @parcel/optimizer-cssnano > @parcel/plugin > @parcel/types > @parcel/fs > @parcel/types > @parcel/package-manager: @parcel/fs@2.0.0-nightly.887 requires a peer of @parcel/core@^2.0.0 but none was installed.
 WARN  @parcel/optimizer-cssnano > @parcel/plugin > @parcel/types > @parcel/fs > @parcel/types: @parcel/package-manager@2.0.0-nightly.887 requires a peer of @parcel/core@^2.0.0 but none was installed.
 WARN  @parcel/optimizer-cssnano > @parcel/plugin > @parcel/types: @parcel/fs@2.0.0-nightly.887 requires a peer of @parcel/core@^2.0.0 but none was installed.
 WARN  7 other warnings
Packages: +702
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Packages are hard linked from the content-addressable store to the virtual store.
  Content-addressable store is at: /home/test/.pnpm-store/v3
  Virtual store is at:             node_modules/.pnpm
Progress: resolved 687, reused 685, downloaded 1, added 702, done
node_modules/.pnpm/@fortawesome+fontawesome-free@5.15.4/node_modules/@fortawesome/fontawesome-free: Running postinstall script, done in 41ms
node_modules/.pnpm/core-js@3.18.3/node_modules/core-js: Running postinstall script, done in 41ms
node_modules/.pnpm/sharp@0.29.1/node_modules/sharp: Running install script, done in 389ms
node_modules/.pnpm/msgpackr-extract@1.0.14/node_modules/msgpackr-extract: Running install script, done in 47ms
node_modules/.pnpm/@parcel+watcher@2.0.0/node_modules/@parcel/watcher: Running install script, done in 51ms
node_modules/.pnpm/lmdb-store@1.6.8/node_modules/lmdb-store: Running install script, done in 50ms

devDependencies:
+ @fortawesome/fontawesome-free 5.15.4
+ @parcel/optimizer-cssnano 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/optimizer-htmlnano 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/packager-css 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/packager-html 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/packager-raw-url 2.0.1-nightly.2509
+ @parcel/reporter-cli 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/transformer-css 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/transformer-html 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/transformer-image 2.0.1-nightly.2509
+ @parcel/transformer-postcss 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/transformer-posthtml 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/transformer-sass 2.0.0-nightly.887 (2.0.0 is available)
+ @parcel/transformer-webmanifest 2.0.1-nightly.2509
+ @popperjs/core 2.10.2
+ animate.css 4.1.1
+ autoprefixer 10.3.7
+ avif 0.0.4
+ blueimp-gallery 3.4.0
+ bootstrap 5.1.3
+ commander 8.2.0
+ copyfiles 2.4.1
+ directory-tree 3.0.0
+ isbot 3.3.4
+ parcel 2.0.0-nightly.885 (2.0.0 is available)
+ sass 1.43.2
+ sharp 0.29.1
/test/ $ deploy

> test@1.0.0 deploy /test
> NODE_ENV=production pnpm run build && pnpm run css:purge -s


> test@1.0.0 build /test
> pnpm run clean -s && pnpm run copy -s && pnpm run parcel:build && pnpm run parcel:build-gen


> test@1.0.0 parcel:build /test
> parcel build --detailed-report 0 --target web index.html

[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-dev-server" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-dev-server" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-dev-server" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-dev-server" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
 ELIFECYCLE  Command failed with exit code 1.
 ELIFECYCLE  Command failed with exit code 1.
 ELIFECYCLE  Command failed with exit code 1.
/test/ $ rm -rf node_modules
/test/ $ rm pnpm-lock.yaml
rm: remove regular file 'pnpm-lock.yaml'? y
/test/ $ yarn install
➀ YN0000: β”Œ Resolution step
➀ YN0032: β”‚ sharp@npm:0.29.1: Implicit dependencies on node-gyp are discouraged
➀ YN0032: β”‚ fsevents@npm:2.3.2: Implicit dependencies on node-gyp are discouraged
➀ YN0032: β”‚ fsevents@npm:2.3.2: Implicit dependencies on node-gyp are discouraged
➀ YN0032: β”‚ node-addon-api@npm:4.2.0: Implicit dependencies on node-gyp are discouraged
➀ YN0061: β”‚ request@npm:2.88.2 is deprecated: request has been deprecated, see https://github.com/request/request/issues/3142
➀ YN0061: β”‚ har-validator@npm:5.1.5 is deprecated: this library is no longer supported
➀ YN0061: β”‚ uuid@npm:3.4.0 is deprecated: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
➀ YN0061: β”‚ request-promise-native@npm:1.0.9 is deprecated: request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
➀ YN0032: β”‚ @parcel/watcher@npm:2.0.0: Implicit dependencies on node-gyp are discouraged
➀ YN0032: β”‚ node-addon-api@npm:3.2.1: Implicit dependencies on node-gyp are discouraged
➀ YN0032: β”‚ lmdb-store@npm:1.6.8: Implicit dependencies on node-gyp are discouraged
➀ YN0032: β”‚ nan@npm:2.15.0: Implicit dependencies on node-gyp are discouraged
➀ YN0032: β”‚ msgpackr-extract@npm:1.0.14: Implicit dependencies on node-gyp are discouraged
➀ YN0061: β”‚ querystring@npm:0.2.0 is deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
➀ YN0032: β”‚ evp_bytestokey@npm:1.0.3: Implicit dependencies on node-gyp are discouraged
➀ YN0002: β”‚ @parcel/transformer-image@npm:2.0.1-nightly.2509 doesn't provide @parcel/core (p8ca4d), requested by @parcel/workers
➀ YN0002: β”‚ @parcel/types@npm:2.0.0-nightly.887 doesn't provide @parcel/core (p25b92), requested by @parcel/workers
➀ YN0002: β”‚ @parcel/types@npm:2.0.0-nightly.887 doesn't provide @parcel/core (p36ef0), requested by @parcel/fs
➀ YN0002: β”‚ @parcel/types@npm:2.0.0-nightly.887 doesn't provide @parcel/core (pfd234), requested by @parcel/cache
➀ YN0002: β”‚ @parcel/types@npm:2.0.0-nightly.887 doesn't provide @parcel/core (pf388e), requested by @parcel/package-manager
➀ YN0002: β”‚ test@workspace:. doesn't provide postcss (p46f3b), requested by autoprefixer
➀ YN0000: β”‚ Some peer dependencies are incorrectly met; run yarn explain peer-requirements <hash> for details, where <hash> is the six-letter p-prefixed code
➀ YN0000: β”” Completed in 4s 676ms
➀ YN0000: β”Œ Fetch step
➀ YN0013: β”‚ yallist@npm:4.0.0 can't be found in the cache and will be fetched from the remote registry
➀ YN0013: β”‚ yaml@npm:1.10.2 can't be found in the cache and will be fetched from the remote registry
➀ YN0013: β”‚ yargs-parser@npm:20.2.9 can't be found in the cache and will be fetched from the remote registry
➀ YN0013: β”‚ yargs@npm:16.2.0 can't be found in the cache and will be fetched from the remote registry
➀ YN0013: β”‚ yargs@npm:17.2.1 can't be found in the cache and will be fetched from the remote registry
➀ YN0000: β”” Completed in 23s 615ms
➀ YN0000: β”Œ Link step
➀ YN0007: β”‚ @fortawesome/fontawesome-free@npm:5.15.4 must be built because it never has been before or the last one failed
➀ YN0007: β”‚ lmdb-store@npm:1.6.8 must be built because it never has been before or the last one failed
➀ YN0007: β”‚ msgpackr-extract@npm:1.0.14 must be built because it never has been before or the last one failed
➀ YN0007: β”‚ @parcel/watcher@npm:2.0.0 must be built because it never has been before or the last one failed
➀ YN0007: β”‚ sharp@npm:0.29.1 must be built because it never has been before or the last one failed
➀ YN0007: β”‚ core-js@npm:3.18.3 must be built because it never has been before or the last one failed
➀ YN0000: β”” Completed in 2s 242ms
➀ YN0000: Done with warnings in 30s 611ms
/test/ $ cp package.json package.json2
/test/ $ nano package.json
/test/ $ yarn run deploy
[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
[ThrowableDiagnostic [Error]: The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".] {
  diagnostics: [
    {
      message: 'The plugin "@parcel/reporter-cli" is not compatible with the current version of Parcel. Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1".',
      origin: '@parcel/core',
      codeFrames: [Array]
    }
  ]
}
/test/ $

(I had to edit package.json between pnpm and yarn to change the deploy script to work with yarn run)

@mischnic
Copy link
Member

Requires "^2.0.0" but the current version is "2.0.0-nightly.885+674539e1"

You still have some older nightly versions in your project

@folknor
Copy link
Author

folknor commented Oct 15, 2021

I just went through and added all parcel packages to package.json using "nightly", then nuked all yarn files and did a reinstall, and both before and after doing that, this is the contents of .yarn/cache - every version is 887 or 2509 except parcel and @parcel/core which are 885 (but they've always been two behind as far as I can remember), and @parcel-watcher-npm-2.0.0-8ac0b4683a-ab84a6f6f5.zip and @parcel-source-map-npm-2.0.0-ddd5436a96-57d964efc4.zip:

$ ls .yarn/cache | grep parcel
@parcel-babel-ast-utils-npm-2.0.1-nightly.2509-78e406a0be-0835b22c7f.zip
@parcel-babylon-walk-npm-2.0.1-nightly.2509-a827b250a1-2523dee7f2.zip
@parcel-bundler-default-npm-2.0.0-nightly.887-2838f22084-d716686874.zip
@parcel-cache-npm-2.0.0-nightly.887-4fd53cdb92-03de701874.zip
@parcel-codeframe-npm-2.0.0-nightly.887-a2265e1316-f4126d4f35.zip
@parcel-compressor-raw-npm-2.0.1-nightly.2509-07e7f06892-d88e63d319.zip
@parcel-config-default-npm-2.0.0-nightly.887-faaeeae965-9d16046b33.zip
@parcel-core-npm-2.0.0-nightly.885-f8689551f8-96c908d0df.zip
@parcel-diagnostic-npm-2.0.0-nightly.887-81b343c1fc-dcd043e48b.zip
@parcel-events-npm-2.0.0-nightly.887-6d553b1edf-2e1255a6ff.zip
@parcel-fs-npm-2.0.0-nightly.887-23e5544163-93d80b351d.zip
@parcel-fs-search-npm-2.0.1-nightly.2509-4c0b49a692-111eec7fb9.zip
@parcel-fs-write-stream-atomic-npm-2.0.1-nightly.2509-413fde5dc5-5ff47216f6.zip
@parcel-graph-npm-2.0.1-nightly.2509-15fcc38e0e-26b24990a4.zip
@parcel-hash-npm-2.0.1-nightly.2509-ab74a8ecf9-78754ccb90.zip
@parcel-logger-npm-2.0.0-nightly.887-6f2e274dec-17611fe857.zip
@parcel-markdown-ansi-npm-2.0.0-nightly.887-41d2c88acc-ca9a5ac202.zip
@parcel-namer-default-npm-2.0.0-nightly.887-5006ed6524-4d89ac63af.zip
@parcel-node-libs-browser-npm-2.0.1-nightly.2509-a10726f6bd-c0756b32ba.zip
@parcel-node-resolver-core-npm-2.0.1-nightly.2509-5ce72ecb61-7f1cf59189.zip
@parcel-optimizer-cssnano-npm-2.0.0-nightly.887-310bad0e76-30039b5604.zip
@parcel-optimizer-htmlnano-npm-2.0.0-nightly.887-790ddeece8-e14b9e3099.zip
@parcel-optimizer-image-npm-2.0.1-nightly.2509-3eda6f734d-4337115097.zip
@parcel-optimizer-svgo-npm-2.0.1-nightly.2509-cfb772c52b-38407ab46d.zip
@parcel-optimizer-terser-npm-2.0.0-nightly.887-c98b8e3216-3d2e5057ab.zip
@parcel-package-manager-npm-2.0.0-nightly.887-d4156fd421-5da8860e55.zip
@parcel-packager-css-npm-2.0.0-nightly.887-93a096b82c-631629a127.zip
@parcel-packager-html-npm-2.0.0-nightly.887-cc3b3ba3a9-3f9a44db04.zip
@parcel-packager-js-npm-2.0.0-nightly.887-6579f550e7-b198ef6f85.zip
@parcel-packager-raw-npm-2.0.0-nightly.887-5b80d59fdf-afbe805cd3.zip
@parcel-packager-raw-url-npm-2.0.1-nightly.2509-a85c1f5cdc-9db37d11ce.zip
@parcel-packager-svg-npm-2.0.1-nightly.2509-ba20f334e9-f0a33b87d7.zip
@parcel-plugin-npm-2.0.0-nightly.887-fcc6171a4c-c297dbd8db.zip
@parcel-reporter-cli-npm-2.0.0-nightly.887-a08a9e64af-4e704c7b56.zip
@parcel-reporter-dev-server-npm-2.0.0-nightly.887-abeb7abf6f-8ba4d1e076.zip
@parcel-resolver-default-npm-2.0.0-nightly.887-c5d32dd6b0-d9f7ae7880.zip
@parcel-runtime-browser-hmr-npm-2.0.0-nightly.887-304f3978b2-510e400a45.zip
@parcel-runtime-js-npm-2.0.0-nightly.887-a7934b54f5-6562642657.zip
@parcel-runtime-react-refresh-npm-2.0.0-nightly.887-96f599db59-5575724abb.zip
@parcel-runtime-service-worker-npm-2.0.1-nightly.2509-0f32cc1761-b4b2a54676.zip
@parcel-source-map-npm-2.0.0-ddd5436a96-57d964efc4.zip
@parcel-transformer-babel-npm-2.0.0-nightly.887-365859b30e-018c4971ef.zip
@parcel-transformer-css-npm-2.0.0-nightly.887-39bd896fb1-b7fa5f970d.zip
@parcel-transformer-html-npm-2.0.0-nightly.887-42f538d554-e1d3ba4e37.zip
@parcel-transformer-image-npm-2.0.1-nightly.2509-871c9d1703-f435e982a7.zip
@parcel-transformer-js-npm-2.0.0-nightly.887-3ffc49e39a-90d3625c18.zip
@parcel-transformer-json-npm-2.0.0-nightly.887-56e46a5e79-42ed439a22.zip
@parcel-transformer-postcss-npm-2.0.0-nightly.887-141c46cf5e-54eebdd380.zip
@parcel-transformer-posthtml-npm-2.0.0-nightly.887-45ef7dec52-e1c809e6ef.zip
@parcel-transformer-raw-npm-2.0.0-nightly.887-c254132947-078fc4a144.zip
@parcel-transformer-react-refresh-wrap-npm-2.0.0-nightly.887-6879a3dee9-3ff3cc5938.zip
@parcel-transformer-sass-npm-2.0.0-nightly.887-198593c446-f56f10e0f0.zip
@parcel-transformer-svg-npm-2.0.1-nightly.2509-caf1ada90e-197d42c122.zip
@parcel-transformer-webmanifest-npm-2.0.1-nightly.2509-d9b00ba737-98178bbd25.zip
@parcel-types-npm-2.0.0-nightly.887-a69d8b2bcf-3484271ff9.zip
@parcel-utils-npm-2.0.0-nightly.887-28327c42a4-6fb6d681df.zip
@parcel-watcher-npm-2.0.0-8ac0b4683a-ab84a6f6f5.zip
@parcel-workers-npm-2.0.0-nightly.887-fa57a9bb58-821831fe2a.zip
parcel-npm-2.0.0-nightly.885-7db070c7b6-7d886ac89d.zip

@folknor
Copy link
Author

folknor commented Oct 15, 2021

	"devDependencies": {
		"@parcel/babel-ast-utils": "nightly",
		"@parcel/babylon-walk": "nightly",
		"@parcel/bundler-default": "nightly",
		"@parcel/cache": "nightly",
		"@parcel/codeframe": "nightly",
		"@parcel/config-default": "nightly",
		"@parcel/core": "nightly",
		"@parcel/diagnostic": "nightly",
		"@parcel/events": "nightly",
		"@parcel/fs-search": "nightly",
		"@parcel/fs-write-stream-atomic": "nightly",
		"@parcel/fs": "nightly",
		"@parcel/graph": "nightly",
		"@parcel/hash": "nightly",
		"@parcel/logger": "nightly",
		"@parcel/markdown-ansi": "nightly",
		"@parcel/namer-default": "nightly",
		"@parcel/node-libs-browser": "nightly",
		"@parcel/node-resolver-core": "nightly",
		"@parcel/optimizer-cssnano": "nightly",
		"@parcel/optimizer-htmlnano": "nightly",
		"@parcel/optimizer-terser": "nightly",
		"@parcel/package-manager": "nightly",
		"@parcel/packager-css": "nightly",
		"@parcel/packager-html": "nightly",
		"@parcel/packager-js": "nightly",
		"@parcel/packager-raw-url": "nightly",
		"@parcel/packager-raw": "nightly",
		"@parcel/plugin": "nightly",
		"@parcel/reporter-cli": "nightly",
		"@parcel/reporter-dev-server": "nightly",
		"@parcel/resolver-default": "nightly",
		"@parcel/runtime-browser": "nightly",
		"@parcel/runtime-js": "nightly",
		"@parcel/runtime-react-refresh": "nightly",
		"@parcel/source-map": "nightly",
		"@parcel/transformer-babel": "nightly",
		"@parcel/transformer-css": "nightly",
		"@parcel/transformer-html": "nightly",
		"@parcel/transformer-image": "nightly",
		"@parcel/transformer-js": "nightly",
		"@parcel/transformer-json": "nightly",
		"@parcel/transformer-postcss": "nightly",
		"@parcel/transformer-posthtml": "nightly",
		"@parcel/transformer-raw": "nightly",
		"@parcel/transformer-react-refresh-wrap": "nightly",
		"@parcel/transformer-react-refresh": "nightly",
		"@parcel/transformer-sass": "nightly",
		"@parcel/transformer-svg": "nightly",
		"@parcel/transformer-webmanifest": "nightly",
		"@parcel/types": "nightly",
		"@parcel/utils": "nightly",
		"@parcel/watcher": "nightly",
		"@parcel/workers": "nightly",
		"parcel": "nightly",
		"sass": "latest"
	}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants