ember-cli-assets 0.0.10 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1889a77238bc91dcee13fc3f2dbd5d1514ed08fc
4
- data.tar.gz: 3314abea01aa074dda5bc538b3b70f37dbdb947d
3
+ metadata.gz: 92d5d1dbe63001feb30396025ca6a2e18dfdbf0a
4
+ data.tar.gz: 5cabbabb7c1651d4ab4867c140157eec02cd217f
5
5
  SHA512:
6
- metadata.gz: b201d2dd47a5f465a12d57be702c2c94afa6a6180016d6c1b0e3460f9702b0b0deef3c875ba81fd1e2be68e79abb5df904f3f6d61796699d2bc44af3885a4566
7
- data.tar.gz: 31eed0ba155aa3aabb31ee045d64c5be323faa65abc89598c244a98f3754f0ae49c52bf9d4a6b767f75ed5ced62f9e78d4f1c3b88afe7be77c9687e0c9f8da9b
6
+ metadata.gz: 4f89849f12d2e1410eac1b41829f9db38141915354dd455a189fe5775c98ad8e2fd08a72fee3a2dafdbcc43d95d729b8c26bf3f66cc57a83f05be482894814f7
7
+ data.tar.gz: db3b58ed1d80490430315e6b3f9cdd1bc4e5084b058145568cff0ae9442737d251704e3790351e95da9dd8180e8ea0ff97064b1fdb398f22a0b56c783be395a6
@@ -1,7 +1,7 @@
1
1
  module Ember
2
2
  module CLI
3
3
  module Assets
4
- VERSION = '0.0.10'
4
+ VERSION = '0.0.11'
5
5
  end
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  module Ember
2
2
  module CLI
3
3
  module Resolver
4
- VERSION = '0.1.16'
4
+ VERSION = '0.1.17'
5
5
  end
6
6
  end
7
7
  end
@@ -6,7 +6,7 @@
6
6
  // ==========================================================================
7
7
 
8
8
 
9
- // Version: 0.1.16
9
+ // Version: 0.1.17
10
10
 
11
11
  (function() {
12
12
  /*globals define registry requirejs */
@@ -121,7 +121,7 @@ define("ember/resolver",
121
121
  throw new Error(" Expected to find: '" + parsedName.fullName + "' within '" + normalizedModuleName + "' but got 'undefined'. Did you forget to `export default` within '" + normalizedModuleName + "'?");
122
122
  }
123
123
 
124
- if (this.shouldWrapInClassFactory(module, parsedName)) {
124
+ if (this.shouldWrapInClassFactory(defaultExport, parsedName)) {
125
125
  defaultExport = classFactory(defaultExport);
126
126
  }
127
127
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ember-cli-assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryunosuke SATO