Skip to content

Commit

Permalink
change javascript build to script only
Browse files Browse the repository at this point in the history
  • Loading branch information
amirbey committed Aug 17, 2018
1 parent 44a170b commit 42f8af0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/models/site.js
Expand Up @@ -148,7 +148,7 @@ module.exports = (sequelize, DataTypes) => {
},
engine: {
type: DataTypes.ENUM,
values: ['hugo', 'javascript', 'jekyll', 'static'],
values: ['hugo', 'jekyll', 'script only', 'static'],
defaultValue: 'static',
},
owner: {
Expand Down
8 changes: 4 additions & 4 deletions frontend/components/SelectSiteEngine.jsx
Expand Up @@ -6,14 +6,14 @@ export const availableEngines = [
label: 'Hugo (experimental)',
value: 'hugo',
},
{
label: 'JavaScript (experimental)',
value: 'javascript',
},
{
label: 'Jekyll',
value: 'jekyll',
},
{
label: 'Script only (experimental)',
value: 'script only',
},
{
label: 'Static (just publish the files in the repository)',
value: 'static',
Expand Down

0 comments on commit 42f8af0

Please sign in to comment.