A Neutrino preset for developing plugins on Adobe's CEP (Common Extensibility Platform)
neutrino-preset-cep
is a Neutrino preset that supports creating plugins for Adobe’s CEP (Common Extensibility Platform).
npm install --save-dev neutrino-preset-cep
module.exports = {
use: ['neutrino-preset-cep']
}
Additionally, you’ll need to provide some configuration options in your package.json
(or in the .neutrinorc.js
file).
See the Configuration section below for more details.
neutrino-preset-cep
follows the standard project layout specified by
Neutrino. This means that by default all project source code should live in a directory named src
in the root
of the project. Any ExtendScript source code should live in a directory named extendscript
in the root of the
project, since it is compiled differently. Any static assets found in static
in the root of the project will
be copied directly to the build
directory. For example, static/test.png
will be copied to build/test.png
and static/foo/test.png
will be copied to build/foo/test.png
.
Here is the minimal configuration you’ll need in package.json
in order for this preset to function properly:
{
"name": "test-plugin",
"version": "0.0.1",
"manifest": {
"extensions": {
"panel": {
"type": "panel",
"title": "Adobe CEP Plugin"
}
}
}
}
In this example, you’ll be creating a plugin called “Adobe CEP Plugin” (with the identifier test-plugin
), with
the following notes:
src/panel.jsx
extendscript/panel.js
Here is an example of more complete configuration located in package.json
:
{
"name": "adobe-plugin",
"version": "0.0.1",
"manifest": {
"bundleName": "Adobe Plugin",
"bundleId": "com.my-company.adobe-plugin",
"hosts": {
"AEFT": "13.0"
},
"requiredRuntimes": {
"CSXS": "6.0"
},
"extensions": {
"panel": {
"type": "panel",
"title": "Adobe Plugin",
"size": [300, 300],
"minSize": [200, 200],
"maxSize": [400, 400]
},
"tutorial": {
"type": "dialog",
"title": "Adobe Plugin Tutorial",
"size": [800, 600],
"minSize": [800, 600],
"maxSize": [800, 600]
}
}
}
}
If you don’t want to put your configuration in the package.json
file, you can specify configuration inside
the options like so:
module.exports = {
use: ['neutrino-preset-cep', {
packageJson: {
name: 'adobe-plugin',
version: '0.0.1',
manifest: {
foo: 'bar'
}
}
}]
}
neutrino-preset-cep
has the following options for itself:
options.packageJson
- Supply an object for this field similar to the structure of the package.json
file. A detailedoptions.externals
- Any additional externals defined here are sent straight into Webpack. Use this if you are usingfs
or child_process
). A few externals are already defined byThis preset makes use of the following presets and middleware, with their configuration paths specified.
options.react
options.compileLoader
options.wrapper
options.xml
options.jsxbin
So this means you could have configuration like so:
module.exports = {
use: ['neutrino-preset-cep', {
react: {},
compileLoader: {},
wrapper: {},
xml: {},
jsxbin: {}
}]
}
manifest.xml
file in the proper CSXS
folder using properties defined in package.json