Skip to content

Commit 28b5dfe

Browse files
authored
meta: fix package repo links (#82)
1 parent dd9d9f9 commit 28b5dfe

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

CHANGELOG.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
1.2.2
2-
- Fix RollupJS reexports bug (https://github.com/guybedford/cjs-module-lexer/pull/59)
2+
- Fix RollupJS reexports bug (https://github.com/nodejs/cjs-module-lexer/pull/59)
33

44
1.2.1
5-
- Support Unicode escapes in strings (https://github.com/guybedford/cjs-module-lexer/pull/55)
6-
- Filter export strings to valid surrogate pairs (https://github.com/guybedford/cjs-module-lexer/pull/56)
5+
- Support Unicode escapes in strings (https://github.com/nodejs/cjs-module-lexer/pull/55)
6+
- Filter export strings to valid surrogate pairs (https://github.com/nodejs/cjs-module-lexer/pull/56)
77

88
1.2.0
9-
- Support for non-identifier exports (https://github.com/guybedford/cjs-module-lexer/pull/54, @nicolo-ribaudo)
9+
- Support for non-identifier exports (https://github.com/nodejs/cjs-module-lexer/pull/54, @nicolo-ribaudo)
1010

1111
1.1.1
12-
- Better support for Babel reexport getter function forms (https://github.com/guybedford/cjs-module-lexer/issues/50)
13-
- Support Babel interopRequireWildcard reexports patterns (https://github.com/guybedford/cjs-module-lexer/issues/52)
12+
- Better support for Babel reexport getter function forms (https://github.com/nodejs/cjs-module-lexer/issues/50)
13+
- Support Babel interopRequireWildcard reexports patterns (https://github.com/nodejs/cjs-module-lexer/issues/52)
1414

1515
1.1.0
16-
- Support for Babel reexport conflict filter (https://github.com/guybedford/cjs-module-lexer/issues/36, @nicolo-ribaudo)
17-
- Support trailing commas in getter patterns (https://github.com/guybedford/cjs-module-lexer/issues/31)
18-
- Support for RollupJS reexports property checks (https://github.com/guybedford/cjs-module-lexer/issues/38)
16+
- Support for Babel reexport conflict filter (https://github.com/nodejs/cjs-module-lexer/issues/36, @nicolo-ribaudo)
17+
- Support trailing commas in getter patterns (https://github.com/nodejs/cjs-module-lexer/issues/31)
18+
- Support for RollupJS reexports property checks (https://github.com/nodejs/cjs-module-lexer/issues/38)
1919

2020
1.0.0
21-
- Unsafe getter tracking (https://github.com/guybedford/cjs-module-lexer/pull/29)
21+
- Unsafe getter tracking (https://github.com/nodejs/cjs-module-lexer/pull/29)
2222

2323
0.6.0
24-
- API-only breaking change: Unify JS and Wasm interfaces (https://github.com/guybedford/cjs-module-lexer/pull/27)
25-
- Add type definitions (https://github.com/guybedford/cjs-module-lexer/pull/28)
24+
- API-only breaking change: Unify JS and Wasm interfaces (https://github.com/nodejs/cjs-module-lexer/pull/27)
25+
- Add type definitions (https://github.com/nodejs/cjs-module-lexer/pull/28)
2626

2727
0.5.2
28-
- Support named getter functions (https://github.com/guybedford/cjs-module-lexer/pull/26)
28+
- Support named getter functions (https://github.com/nodejs/cjs-module-lexer/pull/26)
2929

3030
0.5.1:
31-
- Feature: Implement specific reexport getter forms (https://github.com/guybedford/cjs-module-lexer/pull/25)
31+
- Feature: Implement specific reexport getter forms (https://github.com/nodejs/cjs-module-lexer/pull/25)
3232

3333
0.5.0
34-
- Breaking Change: No longer emit Object.defineProperty exports (https://github.com/guybedford/cjs-module-lexer/pull/24)
35-
- Doc: Update link to WASI SDK (https://github.com/guybedford/cjs-module-lexer/pull/19)
34+
- Breaking Change: No longer emit Object.defineProperty exports (https://github.com/nodejs/cjs-module-lexer/pull/24)
35+
- Doc: Update link to WASI SDK (https://github.com/nodejs/cjs-module-lexer/pull/19)
3636

3737
0.4.3
38-
- Support for Babel 7.12 reexports (https://github.com/guybedford/cjs-module-lexer/pull/16)
39-
- Support module.exports = { ...require('x') } reexports (https://github.com/guybedford/cjs-module-lexer/pull/18)
40-
- "if" keyword space parsing in exports matching (https://github.com/guybedford/cjs-module-lexer/pull/17)
38+
- Support for Babel 7.12 reexports (https://github.com/nodejs/cjs-module-lexer/pull/16)
39+
- Support module.exports = { ...require('x') } reexports (https://github.com/nodejs/cjs-module-lexer/pull/18)
40+
- "if" keyword space parsing in exports matching (https://github.com/nodejs/cjs-module-lexer/pull/17)

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
],
3535
"repository": {
3636
"type": "git",
37-
"url": "git+https://github.com/guybedford/cjs-module-lexer.git"
37+
"url": "git+https://github.com/nodejs/cjs-module-lexer.git"
3838
},
3939
"bugs": {
40-
"url": "https://github.com/guybedford/cjs-module-lexer/issues"
40+
"url": "https://github.com/nodejs/cjs-module-lexer/issues"
4141
},
42-
"homepage": "https://github.com/guybedford/cjs-module-lexer#readme"
42+
"homepage": "https://github.com/nodejs/cjs-module-lexer#readme"
4343
}

0 commit comments

Comments
 (0)