@atlaspack/create-react-app 2.12.1-dev.3398 → 2.12.1-dev.3443
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 +1 -1
- package/package.json +3 -3
- package/templates/default/src/App.js +2 -2
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(['
|
|
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.
|
|
3
|
+
"version": "2.12.1-dev.3443+d1170cfc7",
|
|
4
4
|
"bin": {
|
|
5
5
|
"atlaspack-create-react-app": "lib/bin.js"
|
|
6
6
|
},
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"prepack": "./ensure-no-dev-lib.sh",
|
|
21
21
|
"dev:prepare": "rimraf ./lib/ && mkdir -p lib && cp ./bin/dev-bin.js ./lib/bin.js"
|
|
22
22
|
},
|
|
23
|
-
"license": "MIT",
|
|
23
|
+
"license": "(MIT OR Apache-2.0)",
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"@babel/core": "^7.22.11",
|
|
41
41
|
"rimraf": "^5.0.5"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "d1170cfc79beb290b2a066f472f68f71f7d7cb23"
|
|
44
44
|
}
|