From 4e6b08065076c0f1a43349ddedd25ceea6728bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allen=20Zhang=20=28=E5=BC=A0=E6=B6=9B=29?= Date: Fri, 1 Nov 2024 11:42:21 +0800 Subject: [PATCH] chore: repo overall update --- packages/canyon-core/Cargo.toml | 2 +- plugins/babel-plugin-canyon/lib/index.js | 1 + plugins/babel-plugin-canyon/package.json | 43 ++++++++++++++++++++++++ 3 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 plugins/babel-plugin-canyon/lib/index.js create mode 100644 plugins/babel-plugin-canyon/package.json diff --git a/packages/canyon-core/Cargo.toml b/packages/canyon-core/Cargo.toml index 65d9ee50..354b5ab7 100644 --- a/packages/canyon-core/Cargo.toml +++ b/packages/canyon-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canyon-core" -version = "0.1.1-beta.2" +version = "0.1.1-beta.3" authors.workspace = true edition.workspace = true homepage.workspace = true diff --git a/plugins/babel-plugin-canyon/lib/index.js b/plugins/babel-plugin-canyon/lib/index.js new file mode 100644 index 00000000..e9fe0090 --- /dev/null +++ b/plugins/babel-plugin-canyon/lib/index.js @@ -0,0 +1 @@ +console.log('Hello, world!'); diff --git a/plugins/babel-plugin-canyon/package.json b/plugins/babel-plugin-canyon/package.json new file mode 100644 index 00000000..a497e374 --- /dev/null +++ b/plugins/babel-plugin-canyon/package.json @@ -0,0 +1,43 @@ +{ + "name": "babel-plugin-canyon", + "version": "2.0.0-beta.1", + "description": "A Babel plugin cooperates with istanbul to report the coverage", + "author": "Allen Zhang ", + "license": "MIT", + "homepage": "https://github.com/canyon-project/canyon#readme", + "repository": { + "type": "git", + "url": "git+https://github.com/canyon-project/canyon.git", + "directory": "plugins/babel-plugin-canyon" + }, + "bugs": "https://github.com/canyon-project/canyon/issues", + "keywords": [ + "babel-plugin" + ], + "main": "lib/index.js", + "files": [ + "lib" + ], + "scripts": { + "prepublishOnly": "echo 'prepublishOnly'" + }, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/generator": "^7.25.6" + }, + "devDependencies": { + "@babel/cli": "^7.24.1", + "@babel/core": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/register": "^7.23.7", + "babel-plugin-istanbul": "6.1.1", + "chai": "^4.2.0", + "cross-env": "^7.0.3", + "mocha": "^6.2.2", + "nyc": "^15.0.0", + "standard": "^14.3.1" + }, + "peerDependencies": { + "axios": "*" + } +}