Skip to content

Commit 36d85a1

Browse files
committed
chore: move to new org @wenyan
1 parent 0f73acf commit 36d85a1

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Webpack loader for wenyan-lang
55
## Install
66

77
```bash
8-
npm i -D @wenyanlang/loader @wenyanlang/core
8+
npm i -D @wenyan/loader @wenyan/core
99
```
1010

1111
## Webpack Config
@@ -20,7 +20,7 @@ module.exports = {
2020
test: /\.wy$/,
2121
use: [
2222
{
23-
loader: '@wenyanlang/loader',
23+
loader: '@wenyan/loader',
2424
options: {
2525
// options of wenyan.compile
2626
strict: true,

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const { getOptions } = require('loader-utils')
22
const path = require('path')
3-
const Wenyan = require('@wenyanlang/core')
3+
const Wenyan = require('@wenyan/core')
44
const findUp = require('find-up')
55

66
const defaultConfig = {

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "@wenyanlang/loader",
3-
"version": "0.0.2",
2+
"name": "@wenyan/loader",
3+
"version": "0.0.3",
44
"description": "Webpack loader for wenyan-lang",
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/antfu/wenyan-loader.git"
11+
"url": "git+https://github.com/wenyan-lang/loader.git"
1212
},
1313
"files": [
1414
"index.js"
@@ -22,17 +22,17 @@
2222
"author": "Anthony Fu <[email protected]>",
2323
"license": "MIT",
2424
"bugs": {
25-
"url": "https://github.com/antfu/wenyan-loader/issues"
25+
"url": "https://github.com/wenyan-lang/loader/issues"
2626
},
27-
"homepage": "https://github.com/antfu/wenyan-loader#readme",
27+
"homepage": "https://github.com/wenyan-lang/loader#readme",
2828
"peerDependencies": {
2929
"webpack": "^4.0.0",
30-
"@wenyanlang/core": "^0.3.0"
30+
"@wenyan/core": "^0.3.3"
3131
},
3232
"devDependencies": {
33-
"@wenyanlang/core": "^0.3.1",
33+
"@wenyan/core": "^0.3.3",
3434
"loader-utils": "^1.2.3",
3535
"webpack": "^4.41.5",
3636
"webpack-cli": "^3.3.10"
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)