-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add neos 8 - remove node-sass and use dart-sass as node-sass is deprecated - fix type in namespace to Networkteam.Neos.Mockup: - adjust resource build process
- Loading branch information
Showing
7 changed files
with
101 additions
and
1,260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ | |
type: string | ||
ui: | ||
inlineEditable: true | ||
placeholder: i18n | ||
inline: | ||
editorOptions: | ||
autoparagraph: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,13 @@ | |
"description": "A Neos package providing basic mockup functionality for content-first approach", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "node_modules/node-sass/bin/node-sass --output-style compressed Resources/Private/Scss/mockup.scss > Resources/Public/Css/mockup.css", | ||
"start": "node_modules/node-sass/bin/node-sass --watch Resources/Private/Scss -o Resources/Public/Css" | ||
"build": "node_modules/.bin/sass --style=compressed Resources/Private/Scss/mockup.scss Resources/Public/Css/mockup.css", | ||
"start": "node_modules/.bin/sass --style=compressed --watch Resources/Private/Scss:Resources/Public/Css" | ||
}, | ||
"repository": "[email protected]:networkteam/neos-mockup.git", | ||
"author": "Marcel Tams <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"node-sass": "^4.13.1" | ||
"sass": "^1.53.0" | ||
} | ||
} |
Oops, something went wrong.