Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
90c6a476
Commit
90c6a476
authored
Aug 17, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #4727: Fixed wrong Stylus definition in `\yii\web\AssetConverter`
parent
c0e91e25
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
AssetConverter.php
framework/web/AssetConverter.php
+1
-1
No files found.
framework/CHANGELOG.md
View file @
90c6a476
...
...
@@ -82,6 +82,7 @@ Yii Framework 2 Change Log
-
Bug #4519:
`yii\base\Model::isAttributeRequired()`
should check if the
`when`
option of the validator is set (thiagotalma)
-
Bug #4592: Fixed
`yii help`
command was listing incorrect action names for methods like
`actionSayNO`
(samdark)
-
Bug #4654: Fixed issue with PostgreSQL and inserting boolean values with batch insert (cebe)
-
Bug #4727: Fixed wrong Stylus definition in
`\yii\web\AssetConverter`
(samdark)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Bug: URL encoding for the route parameter added to
`\yii\web\UrlManager`
(klimov-paul)
-
Bug: Fixed the bug that requesting protected or private action methods would cause 500 error instead of 404 (qiangxue)
...
...
framework/web/AssetConverter.php
View file @
90c6a476
...
...
@@ -30,7 +30,7 @@ class AssetConverter extends Component implements AssetConverterInterface
'less'
=>
[
'css'
,
'lessc {from} {to} --no-color --source-map'
],
'scss'
=>
[
'css'
,
'sass {from} {to} --sourcemap'
],
'sass'
=>
[
'css'
,
'sass {from} {to} --sourcemap'
],
'styl'
=>
[
'
j
s'
,
'stylus < {from} > {to}'
],
'styl'
=>
[
'
cs
s'
,
'stylus < {from} > {to}'
],
'coffee'
=>
[
'js'
,
'coffee -p {from} > {to}'
],
'ts'
=>
[
'js'
,
'tsc --out {to} {from}'
],
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment