即使使用干净的Yeoman角度构建grunt build
,我仍在继续运行yo angular whatever
。npm cache clean && npm install grunt-contrib-imagemin@0.9.1
。
警告:正在运行" imagemin:dist" (imagemin)任务
致命错误:无法阅读属性'内容'未定义的
答案 0 :(得分:16)
只需更新您的grunt-contrib-imagemin版本。
例如:yourTextView=(TextView)findViewById(R.id.idOfYourTextView);
Typeface font= Typeface.createFromAsset(getAssets(), "The_Font.TTF");
yourTextView.setTypeface(font);
到
"grunt-contrib-imagemin": "^0.9.2"
这对我有用。
答案 1 :(得分:8)
我不得不降级imagemin,现在一切正常。
public SQLite.Net.SQLiteConnection GetConnection()
{
var sqliteFilename = "Sample.db3";
string path = Path.Combin(ApplicationData.Current.LocalFolder.Path, sqliteFilename);
if (!File.Exists(path))
{
File.Create(path + sqliteFilename);
}
var plat = new SQLite.Net.Platform.WinRT.SQLitePlatformWinRT();
var conn = new SQLite.Net.SQLiteConnection(plat,path);
return conn;
}
}
答案 2 :(得分:3)
我改变了Gruntfile.js这一行:
src: '{,*/}*.{png,jpg,jpeg,gif}',
到这一行:
src: '[*/*.{png,jpg,jpeg,gif,svg}]'