質問編集履歴
1
追記の依頼あり、問題の詳細を追加します
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,6 +28,8 @@
|
|
28
28
|
|
29
29
|
|
30
30
|
|
31
|
+
|
32
|
+
|
31
33
|
表示するページの中をデベロッパーツールで見てみても、animate.cssのコードはコンパイルされていませんでした。
|
32
34
|
|
33
35
|
|
@@ -35,3 +37,59 @@
|
|
35
37
|
上記の手順のどこかに不足があるのでしょうか?
|
36
38
|
|
37
39
|
ご教授よろしくお願いします。
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
**追記
|
44
|
+
|
45
|
+
以下、試したことと、それに対するターミナルの表示です。
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
①npx gulpコマンドを打った結果
|
50
|
+
|
51
|
+
gulpfile.jsに書かれていたdefaultタスクが起動。animate-config.jsonに関する処理は確認できず。
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
②gulpfile.jsを一旦削除してnpx gulp
|
56
|
+
|
57
|
+
No gulpfile found
|
58
|
+
|
59
|
+
と表示
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
③gulpfile.jsに以下のコードを記述してnpx gulp
|
64
|
+
|
65
|
+
```
|
66
|
+
|
67
|
+
let animated = require('animate.css');
|
68
|
+
|
69
|
+
"animated": {
|
70
|
+
|
71
|
+
"bounce": true,
|
72
|
+
|
73
|
+
"flash": false,
|
74
|
+
|
75
|
+
"pulse": false,
|
76
|
+
|
77
|
+
"shake": true,
|
78
|
+
|
79
|
+
"headShake": true,
|
80
|
+
|
81
|
+
"swing": true,
|
82
|
+
|
83
|
+
"tada": false,
|
84
|
+
|
85
|
+
"wobble": true,
|
86
|
+
|
87
|
+
"jello":true
|
88
|
+
|
89
|
+
}
|
90
|
+
|
91
|
+
```
|
92
|
+
|
93
|
+
SyntaxError: Unexpected token :
|
94
|
+
|
95
|
+
と表示
|