Skip to content

Commit 21a9586

Browse files
committed
rename to @meteorjs/reify
v0.23.0-beta.0
1 parent 5d44e00 commit 21a9586

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
test/.cache
44
test/**/*.gz
55
node_modules
6+
.idea

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# re&middot;i&middot;fy <sub>_verb, transitive_</sub> &nbsp; [![Build Status](https://github.com/benjamn/reify/actions/workflows/node.js.yml/badge.svg)](https://github.com/benjamn/reify/actions/workflows/node.js.yml)
1+
# re&middot;i&middot;fy <sub>_verb, transitive_</sub> &nbsp; [![Build Status](https://github.com/meteor/reify/actions/workflows/node.js.yml/badge.svg)](https://github.com/meteor/reify/actions/workflows/node.js.yml)
22

33
**re&middot;i&middot;fied** <sub>past</sub> &nbsp; **re&middot;i&middot;fies** <sub>present</sub> &nbsp; **re&middot;i&middot;fy&middot;ing** <sub>participle</sub> &nbsp; **re&middot;i&middot;fi&middot;ca&middot;tion** <sub>noun</sub> &nbsp; **re&middot;i&middot;fi&middot;er** <sub>noun</sub>
44

@@ -10,17 +10,17 @@
1010
Usage
1111
---
1212

13-
1. Run `npm install --save reify` in your package or app directory. The
13+
1. Run `npm install --save @meteorjs/reify` in your package or app directory. The
1414
`--save` is important because reification only applies to modules in
15-
packages that explicitly depend on the `reify` package.
16-
2. Call `require("reify")` before importing modules that contain `import`
15+
packages that explicitly depend on the `@meteorjs/reify` package.
16+
2. Call `require("@meteorjs/reify")` before importing modules that contain `import`
1717
and `export` declarations.
1818

19-
You can also easily `reify` the Node REPL:
19+
You can also easily `@meteorjs/reify` the Node REPL:
2020

2121
```sh
2222
% node
23-
> require("reify")
23+
> require("@meteorjs/reify")
2424
{}
2525
> import { strictEqual } from "assert"
2626
> strictEqual(2 + 2, 5)

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "reify",
3-
"version": "0.22.2",
2+
"name": "@meteorjs/reify",
3+
"version": "0.23.0-beta.0",
44
"main": "node/index.js",
55
"browser": "lib/empty.js",
66
"author": "Ben Newman <[email protected]>",
77
"description": "Enable ECMAScript 2015 modules in Node today. No caveats. Full stop.",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/benjamn/reify.git"
10+
"url": "git+https://github.com/meteor/reify.git"
1111
},
1212
"keywords": [
1313
"ecmascript",
@@ -20,9 +20,9 @@
2020
"node"
2121
],
2222
"license": "MIT",
23-
"homepage": "https://github.com/benjamn/reify#readme",
23+
"homepage": "https://github.com/meteor/reify#readme",
2424
"bugs": {
25-
"url": "https://github.com/benjamn/reify/issues"
25+
"url": "https://github.com/meteor/reify/issues"
2626
},
2727
"engines": {
2828
"node": ">=4"

0 commit comments

Comments
 (0)