- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚开始学习 Dart 。
首先,我从https://angular.io/docs/dart/latest/quickstart.html创建了一个基于angular2-dart的项目,它正常工作。
现在我想从https://pub.dartlang.org/packages/auth0_lock添加auth0-lock dart包,因此我将pubspec.yaml修改为以下内容:
name: go_dart_angular2_zingchart
description: Go Dart Angular2 with ZingChart Started Kit
version: 0.0.1
environment:
sdk: '>=1.13.0 <2.0.0'
dependencies:
angular2: ^2.0.0-beta.18
browser: ^0.10.0
dart_to_js_script_rewriter: ^1.0.1
auth0_lock: ^0.1.0
transformers:
- angular2:
platform_directives:
- 'package:angular2/common.dart#COMMON_DIRECTIVES'
platform_pipes:
- 'package:angular2/common.dart#COMMON_PIPES'
entry_points: client/web/main.dart
- dart_to_js_script_rewriter
pub get
时,出现以下错误:
Error on line 15, column 3 of ../../../.pub-cache/hosted/pub.dartlang.org/auth0_lock-0.1.0/pubspec.yaml: Error loading transformer "dart_to_js_script_rewriter": package "dart_to_js_script_rewriter" is not a dependency.
- dart_to_js_script_rewriter
^^^^^^^^^^^^^^^^^^^^^^^^^^
最佳答案
将auth0_lock: ^0.1.0
添加到我的依赖项并运行pub get
时,出现相同的错误。错误消息指出“dart_to_js_script_rewriter”不是auth0_lock包的pubspec.yaml中的依赖项。如果您看起来here,则好像已将其添加在dev_dependecies
下。任何相关软件包的Dev dependencies将被忽略。 Pub仅获取您软件包的开发依赖项。
所以我认为这是他们包装中的问题。
因此,我要做的是转到https://github.com/andresaraujo/auth0_lock.dart并克隆了该程序包,并将其添加到我自己的项目根目录中,该目录称为auth0_lock
。然后,在我的pubspec.yaml中输入:
auth0_lock:
path: auth0_lock
import 'package:auth0_lock/auth0_lock.dart';
关于dart - 软件包 “dart_to_js_script_rewriter”不是依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38548634/
我刚开始学习 Dart 。 首先,我从https://angular.io/docs/dart/latest/quickstart.html创建了一个基于angular2-dart的项目,它正常工作。
我是一名优秀的程序员,十分优秀!