🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@cx-cli/core

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cx-cli/core - npm Package Compare versions

Comparing version
2.0.0
to
2.0.1
+7
src/index.js
export function test1() {
console.log("test1");
}
export default function test2() {
console.log("test2");
}
+13
-24
{
"name": "@cx-cli/core",
"version": "2.0.0",
"description": "> TODO: description",
"author": "OF3674 <597219320@qq.com>",
"homepage": "https://github.com/nanianlisao/ci_cd#readme",
"license": "ISC",
"main": "lib/core.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanianlisao/ci_cd.git"
},
"version": "2.0.1",
"description": "",
"type": "module",
"exports": "./src/index.js",
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1"
},
"bugs": {
"url": "https://github.com/nanianlisao/ci_cd/issues"
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@cx-cli/utils": "^1.0.5"
},
"gitHead": "a6bf905027e46f5412342c1d1b839644770adddf"
"peerDependencies": {
"@cx-cli/core": ">= 1"
}
}
"use strict";
module.exports = core;
function core() {
console.log("core");
}
# `core`
> TODO: description
## Usage
```
const core = require('core');
// TODO: DEMONSTRATE API
```