@atlaspack/create-react-app 2.12.1-dev.3398 → 2.12.1-dev.3401

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/lib/cli.js CHANGED
@@ -128,7 +128,7 @@ async function createApp(packageName, tempPath) {
128
128
  }, null, 2));
129
129
  }(), ncp(_path().default.join(TEMPLATES_DIR, 'default'), tempPath)]);
130
130
  log(emoji.progress, 'Installing packages...');
131
- await installPackages(['parcel@canary', 'postcss', '@babel/core'], {
131
+ await installPackages(['@atlaspack/cli@canary', 'postcss', '@babel/core'], {
132
132
  cwd: tempPath,
133
133
  isDevDependency: true
134
134
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/create-react-app",
3
- "version": "2.12.1-dev.3398+81c73b3cd",
3
+ "version": "2.12.1-dev.3401+b483af77f",
4
4
  "bin": {
5
5
  "atlaspack-create-react-app": "lib/bin.js"
6
6
  },
@@ -40,5 +40,5 @@
40
40
  "@babel/core": "^7.22.11",
41
41
  "rimraf": "^5.0.5"
42
42
  },
43
- "gitHead": "81c73b3cdf93adf8b0013be9fed5422579bd5910"
43
+ "gitHead": "b483af77f02d1258c8dad156e097b94f83671d8e"
44
44
  }
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
- import Parcel from './atlaspack';
2
+ import Atlaspack from './atlaspack';
3
3
  import './App.css';
4
4
 
5
5
  export default function App() {
6
- return <Parcel />;
6
+ return <Atlaspack />;
7
7
  }