Skip to content

Commit c295ef0

Browse files
committed
Update repository URL
1 parent c1ad3c8 commit c295ef0

File tree

7 files changed

+18
-16
lines changed

7 files changed

+18
-16
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Reporting Issues
44

5-
Please see our [FAQ](https://github.com/wycats/handlebars.js/blob/master/FAQ.md) for common issues that people run into.
5+
Please see our [FAQ](https://github.com/handlebars-lang/handlebars.js/blob/master/FAQ.md) for common issues that people run into.
66

77
Should you run into other issues with the project, please don't hesitate to let us know by filing an [issue][issue]! In general we are going to ask for an example of the problem failing, which can be as simple as a jsfiddle/jsbin/etc. We've put together a jsfiddle [template][jsfiddle] to ease this. (We will keep this link up to date as new releases occur, so feel free to check back here)
88

@@ -47,7 +47,7 @@ You can also run our set of benchmarks with `grunt bench`.
4747
The `grunt dev` implements watching for tests and allows for in browser testing at `http://localhost:9999/spec/`.
4848

4949
If you notice any problems, please report them to the GitHub issue tracker at
50-
[http://github.com/wycats/handlebars.js/issues](http://github.com/wycats/handlebars.js/issues).
50+
[http://github.com/handlebars-lang/handlebars.js/issues](http://github.com/handlebars-lang/handlebars.js/issues).
5151

5252
##Running Tests
5353

FAQ.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
1. How can I file a bug report:
44

5-
See our guidelines on [reporting issues](https://github.com/wycats/handlebars.js/blob/master/CONTRIBUTING.md#reporting-issues).
5+
See our guidelines on [reporting issues](https://github.com/handlebars-lang/handlebars.js/blob/master/CONTRIBUTING.md#reporting-issues).
66

77
1. Why isn't my Mustache template working?
88

9-
Handlebars deviates from Mustache slightly on a few behaviors. These variations are documented in our [readme](https://github.com/wycats/handlebars.js#differences-between-handlebarsjs-and-mustache).
9+
Handlebars deviates from Mustache slightly on a few behaviors. These variations are documented in our [readme](https://github.com/handlebars-lang/handlebars.js#differences-between-handlebarsjs-and-mustache).
1010

1111
1. Why is it slower when compiling?
1212

@@ -36,25 +36,27 @@
3636
```sh
3737
handlebars --version
3838
```
39+
3940
If using the integrated precompiler and
4041

4142
```javascript
4243
console.log(Handlebars.VERSION);
4344
```
45+
4446
On the client side.
4547

4648
We include the built client libraries in the npm package for those who want to be certain that they are using the same client libraries as the compiler.
4749

48-
Should these match, please file an issue with us, per our [issue filing guidelines](https://github.com/wycats/handlebars.js/blob/master/CONTRIBUTING.md#reporting-issues).
50+
Should these match, please file an issue with us, per our [issue filing guidelines](https://github.com/handlebars-lang/handlebars.js/blob/master/CONTRIBUTING.md#reporting-issues).
4951

5052
1. Why doesn't IE like the `default` name in the AMD module?
5153

5254
Some browsers such as particular versions of IE treat `default` as a reserved word in JavaScript source files. To safely use this you need to reference this via the `Handlebars['default']` lookup method. This is an unfortunate side effect of the shims necessary to backport the Handlebars ES6 code to all current browsers.
5355

5456
1. How do I load the runtime library when using AMD?
5557

56-
There are two options for loading under AMD environments. The first is to use the `handlebars.runtime.amd.js` file. This may require a [path mapping](https://github.com/wycats/handlebars.js/blob/master/spec/amd-runtime.html#L31) as well as access via the `default` field.
58+
There are two options for loading under AMD environments. The first is to use the `handlebars.runtime.amd.js` file. This may require a [path mapping](https://github.com/handlebars-lang/handlebars.js/blob/master/spec/amd-runtime.html#L31) as well as access via the `default` field.
5759

58-
The other option is to load the `handlebars.runtime.js` UMD build, which might not require path configuration and exposes the library as both the module root and the `default` field for compatibility.
60+
The other option is to load the `handlebars.runtime.js` UMD build, which might not require path configuration and exposes the library as both the module root and the `default` field for compatibility.
5961

6062
If not using ES6 transpilers or accessing submodules in the build the former option should be sufficient for most use cases.

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ with many performance tests being 5 to 7 times faster than the Mustache equivale
110110
Upgrading
111111
---------
112112

113-
See [release-notes.md](https://github.com/wycats/handlebars.js/blob/master/release-notes.md) for upgrade notes.
113+
See [release-notes.md](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md) for upgrade notes.
114114

115115
Known Issues
116116
------------
117117

118-
See [FAQ.md](https://github.com/wycats/handlebars.js/blob/master/FAQ.md) for known issues and common pitfalls.
118+
See [FAQ.md](https://github.com/handlebars-lang/handlebars.js/blob/master/FAQ.md) for known issues and common pitfalls.
119119

120120

121121
Handlebars in the Wild
@@ -167,4 +167,4 @@ License
167167
-------
168168
Handlebars.js is released under the MIT license.
169169

170-
[pull-request]: https://github.com/wycats/handlebars.js/pull/new/master
170+
[pull-request]: https://github.com/handlebars-lang/handlebars.js/pull/new/master

components/handlebars-source.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
1010
gem.date = Time.now.strftime("%Y-%m-%d")
1111
gem.description = %q{Handlebars.js source code wrapper for (pre)compilation gems.}
1212
gem.summary = %q{Handlebars.js source code wrapper}
13-
gem.homepage = "https://github.com/wycats/handlebars.js/"
13+
gem.homepage = "https://github.com/handlebars-lang/handlebars.js/"
1414
gem.version = package["version"].sub "-", "."
1515
gem.license = "MIT"
1616

components/handlebars.js.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<id>handlebars.js</id>
55
<version>4.7.7</version>
66
<authors>handlebars.js Authors</authors>
7-
<licenseUrl>https://github.com/wycats/handlebars.js/blob/master/LICENSE</licenseUrl>
8-
<projectUrl>https://github.com/wycats/handlebars.js/</projectUrl>
7+
<licenseUrl>https://github.com/handlebars-lang/handlebars.js/blob/master/LICENSE</licenseUrl>
8+
<projectUrl>https://github.com/handlebars-lang/handlebars.js/</projectUrl>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<description>Extension of the Mustache logicless template language</description>
1111
<releaseNotes></releaseNotes>

docs/decorators-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Decorators are executed when the block program is instantiated and are passed `(
1616

1717
Decorators may set values on `props` or return a modified function that wraps `program` in particular behaviors. If the decorator returns nothing, then `program` is left unaltered.
1818

19-
The [inline partial](https://github.com/wycats/handlebars.js/blob/master/lib/handlebars/decorators/inline.js) implementation provides an example of decorators being used for both metadata and wrapping behaviors.
19+
The [inline partial](https://github.com/handlebars-lang/handlebars.js/blob/master/lib/handlebars/decorators/inline.js) implementation provides an example of decorators being used for both metadata and wrapping behaviors.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"repository": {
1414
"type": "git",
15-
"url": "https://github.com/wycats/handlebars.js.git"
15+
"url": "https://github.com/handlebars-lang/handlebars.js.git"
1616
},
1717
"author": "Yehuda Katz",
1818
"license": "MIT",
@@ -121,7 +121,7 @@
121121
}
122122
},
123123
"lint-staged": {
124-
"*.{js,css,json,md}": [
124+
"*.{js,css,json}": [
125125
"prettier --write",
126126
"git add"
127127
],

0 commit comments

Comments
 (0)