wallace 0.7.1 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -3,11 +3,11 @@
3
3
  This package contains the library for the [Wallace](https://github.com/wallace-js/wallace) framework, which you import into your source files:
4
4
 
5
5
  ```jsx
6
- import { mount } from "wallace";
6
+ import { mount } from 'wallace';
7
7
 
8
8
  const MyComponent = () => <div>Hello world</div>;
9
9
 
10
- mount("main", Component);
10
+ mount('main', Component);
11
11
  ```
12
12
 
13
13
  It requires the [babel-plugin-wallace](https://www.npmjs.com/package/babel-plugin-wallace) to work, which is a dependency of this package, always at the same version.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wallace",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "author": "Andrew Buchan",
5
5
  "description": "The framework that brings you FREEDOM!!",
6
6
  "license": "ISC",
@@ -17,5 +17,5 @@
17
17
  "babel-plugin-wallace": "^0.7.0",
18
18
  "browserify": "^17.0.1"
19
19
  },
20
- "gitHead": "aff9157154694c936bef83c1958b9a6416d93b44"
20
+ "gitHead": "8ddf878a5e0119acc5edea32f08b7fc8a40974f1"
21
21
  }
File without changes