Skip to content

Commit d09bcd5

Browse files
authored
feat(parcel-plugin): replace parcel-bundler with parcel (#387)
1 parent f620bea commit d09bcd5

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

examples/parcel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"devDependencies": {
44
"@babel/core": "^7.7.7",
55
"@svgr/parcel-plugin-svgr": "^4.3.3",
6-
"parcel-bundler": "^1.12.4"
6+
"parcel": "^1.12.4"
77
}
88
}

examples/parcel/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3576,10 +3576,10 @@ pako@~1.0.5:
35763576
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732"
35773577
integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==
35783578

3579-
parcel-bundler@^1.12.4:
3579+
parcel@^1.12.4:
35803580
version "1.12.4"
3581-
resolved "https://registry.yarnpkg.com/parcel-bundler/-/parcel-bundler-1.12.4.tgz#31223f4ab4d00323a109fce28d5e46775409a9ee"
3582-
integrity sha512-G+iZGGiPEXcRzw0fiRxWYCKxdt/F7l9a0xkiU4XbcVRJCSlBnioWEwJMutOCCpoQmaQtjB4RBHDGIHN85AIhLQ==
3581+
resolved "https://registry.yarnpkg.com/parcel/-/parcel-1.12.4.tgz#c8136085179c6382e632ca98126093e110be2ac5"
3582+
integrity sha512-qfc74e2/R4pCoU6L/ZZnK9k3iDS6ir4uHea0e9th9w52eehcAGf2ido/iABq9PBXdsIOe4NSY3oUm7Khe7+S3w==
35833583
dependencies:
35843584
"@babel/code-frame" "^7.0.0"
35853585
"@babel/core" "^7.4.4"

packages/parcel-plugin-svgr/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"prepublishOnly": "yarn run build"
3131
},
3232
"peerDependencies": {
33-
"parcel-bundler": "^1.10.0"
33+
"parcel": "^1.10.0"
3434
},
3535
"dependencies": {
3636
"@babel/core": "^7.7.5",
@@ -42,6 +42,6 @@
4242
"@svgr/plugin-svgo": "^5.1.0"
4343
},
4444
"devDependencies": {
45-
"parcel-bundler": "^1.10.0"
45+
"parcel": "^1.10.0"
4646
}
4747
}

packages/parcel-plugin-svgr/src/asset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Asset } from 'parcel-bundler'
1+
import { Asset } from 'parcel'
22
import { transformAsync, createConfigItem } from '@babel/core'
33
import svgo from '@svgr/plugin-svgo'
44
import jsx from '@svgr/plugin-jsx'

packages/parcel-plugin-svgr/src/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Bundler from 'parcel-bundler'
1+
import Bundler from 'parcel'
22
import path from 'path'
33
import plugin from '.'
44

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7964,10 +7964,10 @@ parallel-transform@^1.1.0:
79647964
inherits "^2.0.3"
79657965
readable-stream "^2.1.5"
79667966

7967-
parcel-bundler@^1.10.0:
7967+
parcel@^1.10.0:
79687968
version "1.12.4"
7969-
resolved "https://registry.yarnpkg.com/parcel-bundler/-/parcel-bundler-1.12.4.tgz#31223f4ab4d00323a109fce28d5e46775409a9ee"
7970-
integrity sha512-G+iZGGiPEXcRzw0fiRxWYCKxdt/F7l9a0xkiU4XbcVRJCSlBnioWEwJMutOCCpoQmaQtjB4RBHDGIHN85AIhLQ==
7969+
resolved "https://registry.yarnpkg.com/parcel/-/parcel-1.12.4.tgz#c8136085179c6382e632ca98126093e110be2ac5"
7970+
integrity sha512-qfc74e2/R4pCoU6L/ZZnK9k3iDS6ir4uHea0e9th9w52eehcAGf2ido/iABq9PBXdsIOe4NSY3oUm7Khe7+S3w==
79717971
dependencies:
79727972
"@babel/code-frame" "^7.0.0"
79737973
"@babel/core" "^7.4.4"

0 commit comments

Comments
 (0)