Skip to content

Commit cfecdb1

Browse files
committed
2 parents 3475db4 + a6f4f2f commit cfecdb1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
> Notice: I encourage you to check out [parcel-cep-plugin](https://github.com/fusepilot/parcel-plugin-cep). It's a more maintainable approach to the same problem that has a _much_ smaller codebase than a fork [create-react-app](https://github.com/facebookincubator/create-react-app) ever will. [Parcel](https://github.com/parcel-bundler/parcel) also has many [benefits](https://github.com/parcel-bundler/parcel#features) that should be enticing enough to consider switching.
2+
13
# Create CEP Extension
24

35
Create CEP Extensions with no build configuration. Closely matches functionality from [Create React App](https://github.com/facebookincubator/create-react-app).
@@ -222,4 +224,4 @@ We'd love to have your helping hand on `create-cep-extension`! See [CONTRIBUTING
222224

223225
* Improve target host configuration per [#4](https://github.com/fusepilot/create-cep-extension/pull/4).
224226
* Create ````.jsxbin````'s automatically and smoothly. Adobe has made this nearly impossible to do on macOS, so not sure if its worth the trouble. Especially since .jsxbin doesn't really deter hackers.
225-
* Testing.
227+
* Testing.

packages/create-cep-extension-scripts/config/paths.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ function getServedPath(appPackageJson) {
5151
// config after eject: we're in ./config/
5252
module.exports = {
5353
dotenv: resolveApp('.env'),
54+
appPath: resolveApp('.'),
5455
appBuild: resolveApp('build'),
5556
appPublic: resolveApp('public'),
5657
appHtml: resolveApp('public/index.html'),

packages/create-cep-extension-scripts/scripts/eject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ inquirer
8080
}
8181
}
8282

83-
const folders = ['config', 'config/jest', 'scripts'];
83+
const folders = ['config', 'config/jest', 'scripts', 'scripts/templates'];
8484

8585
// Make shallow array of files paths
8686
const files = folders.reduce((files, folder) => {

0 commit comments

Comments
 (0)