lincd-cli 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -53
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,60 +1,13 @@
1
1
  # Setup a new dacore module
2
2
 
3
- `npm install -g @dacore/build-tools`
3
+ `npm install lincd-cli`
4
4
 
5
- will install this module globally so you can access the `dacore` command in the command line
5
+ or
6
6
 
7
- `dacore init`
7
+ `yarn add lincd-cli`
8
8
 
9
- will create npm links to you're previously installed workspace setup (no documentation for that yet!)
9
+ Then type
10
10
 
11
- ## tsconfig
11
+ `npm exec lincd help`
12
12
 
13
- create `tsconfig.json`:
14
-
15
- {
16
- "compilerOptions": {
17
- "module": "commonjs",
18
- "sourceMap": true,
19
- "target": "es6",
20
- "outDir": "lib",
21
- "declaration": true,
22
- "jsx":"react",
23
- "types": [
24
- ]
25
- },
26
- "files": [
27
- "./src/index.ts"
28
- ],
29
- "include" : [
30
- "./node_modules/@dacore/core/builds/dacore.core.d.ts"
31
- ]
32
- }
33
-
34
- and `tsconfig-es5.json`
35
-
36
- {
37
- "compilerOptions": {
38
- "module": "commonjs",
39
- "sourceMap": true,
40
- "target": "ES5",
41
- "jsx":"react",
42
- "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
43
- "types": [
44
- ]
45
- },
46
- "files": [
47
- "./src/index.ts"
48
- ],
49
- "include" : [
50
- "./src/definitions/jison.d.ts",
51
- "./node_modules/@dacore/core/builds/dacore.core.d.ts"
52
- ]
53
- }
54
-
55
- 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.
56
- If you must, remember to undo it after development.
57
-
58
- To upgrade to the latest version run `
59
-
60
- yarn upgrade @dacore/build-tools --latest
13
+ for available commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lincd-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Command line tools for the lincd.js library",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -25,8 +25,6 @@
25
25
  "@lodder/grunt-postcss": "^3.0.0",
26
26
  "@types/node": "^14.14.13",
27
27
  "chalk": "4.1.0",
28
- "lincd": "*",
29
- "lincd-cli": "*",
30
28
  "child-process-promise": "^2.2.1",
31
29
  "colors": "^1.4.0",
32
30
  "commander": "^6.2.0",
@@ -40,6 +38,8 @@
40
38
  "grunt-exec": "^3.0.0",
41
39
  "grunt-ts": "^6.0.0-beta.17",
42
40
  "grunt-webpack": "^4.0.2",
41
+ "lincd": "*",
42
+ "lincd-cli": "*",
43
43
  "load-grunt-tasks": "^5.1.0",
44
44
  "mini-css-extract-plugin": "^1.3.3",
45
45
  "postcss": "^8.2.1",