Skip to content

Commit

Permalink
chore: move to new org @wenyan
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Apr 27, 2020
1 parent 81acaa1 commit 2f14e6f
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The fresh new Online IDE is now landed. With file explorer, rendering, a better

## We are now moved to Typescript!

We have rewritten our codebase to Typescript. The typing declaration file is also shipped in [@wanyanlang/code](https://www.npmjs.com/package/@wenyanlang/core).
We have rewritten our codebase to Typescript. The typing declaration file is also shipped in [@wanyanlang/code](https://www.npmjs.com/package/@wenyan/core).

Check out for #543 for more details.

Expand Down Expand Up @@ -233,7 +233,7 @@ See [**Full Documation**](https://github.com/LingDong-/wenyan-lang/blob/master/d
A new standard library `畫譜` that manipulates canvas on web pages. Check out the demo on Online IDE!

### Browser Runtime
New package [`@wenyanlang/runtime`](https://github.com/LingDong-/wenyan-lang/blob/master/documentation/Runtime.md) allowing you to run Wenyan direct in `<script>` tag of html! (PR #433, thanks @antfu)
New package [`@wenyan/runtime`](https://github.com/LingDong-/wenyan-lang/blob/master/documentation/Runtime.md) allowing you to run Wenyan direct in `<script>` tag of html! (PR #433, thanks @antfu)

### Docs
- [**Standard library document**](https://github.com/LingDong-/wenyan-lang/blob/master/documentation/Standard-Lib.md) added. (PR #432, thanks @antfu @statementreply)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# 文言 wenyan-lang

[![npm](https://img.shields.io/npm/v/@wenyanlang/core)](https://www.npmjs.com/package/@wenyanlang/core)
[![npm](https://img.shields.io/npm/v/@wenyan/core)](https://www.npmjs.com/package/@wenyan/core)
[![build](https://img.shields.io/github/workflow/status/LingDong-/wenyan-lang/Build%20%26%20Test)](https://github.com/LingDong-/wenyan-lang/actions)
[![Netlify Status](https://api.netlify.com/api/v1/badges/c36d4838-1c8f-4cfe-986e-43e0de6f71a3/deploy-status)](https://app.netlify.com/sites/wenyan-lang/deploys)

Expand Down Expand Up @@ -81,7 +81,7 @@ More sophisticated examples, such as the Sieve of Eratosthenes, Quicksort, Mande
Install the compiler by

```bash
npm install -g @wenyanlang/cli
npm install -g @wenyan/cli
```

Try run the included examples, e.g.:
Expand Down
2 changes: 1 addition & 1 deletion README.zh-Hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ for (var i = 0; i < n; i++) {
使用以下命令安装本编译器:

```bash
npm install -g @wenyanlang/cli
npm install -g @wenyan/cli
```

尝试运行内置的例子,例如:
Expand Down
2 changes: 1 addition & 1 deletion README.zh-Hant.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ console.log("問天地好在。");
使用以下命令安裝本編譯器:

```bash
npm install -g @wenyanlang/cli
npm install -g @wenyan/cli
```

嘗試運行內置的例子,例如:
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wenyanlang",
"description": "文言 A programming language for the ancient Chinese",
"version": "0.3.2",
"version": "0.3.3",
"author": "LingDong <lingdong0618@hotmail.com>",
"private": true,
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion tools/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const fs = require("fs-extra");

const root = path.resolve(__dirname, "..");
const distRoot = path.resolve(__dirname, "../dist");
const npmOrganization = "@wenyanlang";
const npmOrganization = "@wenyan";

const packages = ["cli", "core", "render", "runtime"];

Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Core = {
plugins: [
...defaultPlugins(),
new DtsBundlePlugin({
name: '@wenyanlang/core',
name: '@wenyan/core',
baseDir: 'typings/src',
main: 'typings/src/parser.d.ts',
out: '../../dist/core/index.d.ts',
Expand Down

0 comments on commit 2f14e6f

Please sign in to comment.