Skip to content

Commit

Permalink
Rename to atlaspack (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcompiles authored Aug 19, 2024
1 parent 5b958ef commit 86ac421
Show file tree
Hide file tree
Showing 1,258 changed files with 7,369 additions and 7,516 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@parcel/eslint-config"
"extends": "@atlaspack/eslint-config"
}
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.*/node_modules/resolve/test/**/.*
<PROJECT_ROOT>/.nyc_output/.*
.*/tmp/**/.*
.*/.parcel-cache/.*
.*/.atlaspack-cache/.*
<PROJECT_ROOT>/packages/core/integration-tests/dist/**
<PROJECT_ROOT>/packages/core/integration-tests/test/input/**
<PROJECT_ROOT>/packages/core/integration-tests/test/integration/babel-strip-flow-types/**
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.cache/
.idea/
.nyc_output/
.parcel-cache/
.atlaspack-cache/
.verdaccio_storage/
.vscode/*
!.vscode/extensions.json
Expand All @@ -10,7 +10,6 @@ dist/
lib/
logs/
node_modules/
parcel-bundle-reports/
tmp

/target/
Expand Down
5 changes: 4 additions & 1 deletion .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"spec": "packages/*/!(integration-tests)/test/{*.js,**/*.{test,spec}.js}",
"require": ["@parcel/babel-register", "@parcel/test-utils/src/mochaSetup.js"],
"require": [
"@atlaspack/babel-register",
"@atlaspack/test-utils/src/mochaSetup.js"
],
// TODO: Remove this when https://github.com/nodejs/node/pull/28788 is resolved
"exit": true
}
6 changes: 3 additions & 3 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ packages/*/*/test/input
packages/*/*/test/dist
packages/*/*/test/mochareporters.json
packages/*/*/test/fixtures
packages/*/*/test/.parcel-cache
packages/*/*/test/.atlaspack-cache
vendor
tmp
.parcel-cache
.atlaspack-cache

# Ignoring main README for now because generated Table of Contents adds a line that prettier removes
# in precommit hook, causing `yarn lint:readme` to fail
/README.md
/packages/core/parcel/README.md
/packages/core/atlaspack/README.md
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
},
{
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/packages/utils/parcelforvscode"
"--extensionDevelopmentPath=${workspaceFolder}/packages/utils/atlaspackforvscode"
],
"name": "Launch Parcel for VSCode Extension",
"name": "Launch atlaspack for VSCode Extension",
"outFiles": [
"${workspaceFolder}/packages/utils/parcelforvscode/out/**/*.js"
"${workspaceFolder}/packages/utils/atlaspackforvscode/out/**/*.js"
],
"preLaunchTask": "Watch VSCode Extension",
"request": "launch",
Expand Down
Loading

0 comments on commit 86ac421

Please sign in to comment.