refactor(es/helpers): Move packages for monorepo (#7833)

This commit is contained in:
Donny/강동윤 2023-08-18 13:25:37 +09:00 committed by GitHub
parent 6e37fd2932
commit 1ab406cd7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
112 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ benches/
# TODO: Enable formatting
helpers/
packages/swc-helpers
packages/helpers
node-swc/__tests__
node-swc/src
node-swc/tests

View File

@ -56,7 +56,7 @@ fn init_helpers() -> Arc<PathBuf> {
.unwrap()
.to_path_buf();
let helper_dir = project_root.join("packages").join("swc-helpers");
let helper_dir = project_root.join("packages").join("helpers");
if env::var("SKIP_HELPERS").unwrap_or_default() == "1" {
return Arc::new(helper_dir);
@ -102,7 +102,7 @@ fn init_helpers() -> Arc<PathBuf> {
.arg("install")
.arg("--no-save")
.arg("--no-package-lock")
.arg("./packages/swc-helpers");
.arg("./packages/helpers");
let status = cmd
.status()
.expect("failed to install helper package from root");

Some files were not shown because too many files have changed in this diff Show More