Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lincd-cli

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lincd-cli

Command line tools for the lincd.js library

  • 0.1.0
  • npm
  • Socket score

Version published
Weekly downloads
26
increased by44.44%
Maintainers
1
Weekly downloads
 
Created
Source

Setup a new dacore module

npm install -g @dacore/build-tools

will install this module globally so you can access the dacore command in the command line

dacore init

will create npm links to you're previously installed workspace setup (no documentation for that yet!)

tsconfig

create tsconfig.json:

{
  "compilerOptions": {
	"module": "commonjs",
	"sourceMap": true,
	"target": "es6",
	"outDir": "lib",
	"declaration": true,
	"jsx":"react",
	"types": [
	]
  },
  "files": [
	"./src/index.ts"
  ],
  "include" : [
	"./node_modules/@dacore/core/builds/dacore.core.d.ts"
  ]
}

and tsconfig-es5.json

{
  "compilerOptions": {
	"module": "commonjs",
	"sourceMap": true,
	"target": "ES5",
	"jsx":"react",
	"lib": ["es2017", "dom"],//required to make core-js work, however there are some issues with this, as it potentially ignores warning for targets you don't support. Hence be careful to only use core-js features that you know are specifically included in @dacore/core or @dacore/browser-core-es5
	"types": [
	]
  },
  "files": [
	"./src/index.ts"
  ],
  "include" : [
	"./src/definitions/jison.d.ts",
	"./node_modules/@dacore/core/builds/dacore.core.d.ts"
  ]
}

Please do not be tempted to create a symbolic link to your local development version of this package. It will cause trouble, for example when creating new modules. If you must, remember to undo it after development.

To upgrade to the latest version run `

yarn upgrade @dacore/build-tools --latest

Keywords

FAQs

Package last updated on 04 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc