lincd-cli 0.2.1 → 0.2.2

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.
@@ -1,4 +0,0 @@
1
- node_modules
2
- frontend/build
3
- modules/**/dist
4
- modules/**/lib
@@ -1,6 +0,0 @@
1
- **/node_modules
2
- src
3
- .idea
4
- Gruntfile.js
5
- tsconfig.json
6
- tsconfig-es5.json
@@ -1,16 +0,0 @@
1
- var buildTools = require('lincd-cli');
2
- module.exports = buildTools.generateGruntConfig('${package_name}', {
3
- externals: {
4
- react: 'React',
5
- 'react-dom': 'ReactDOM',
6
- }, //list of non lincd modules that are already loaded and made globally available by one of the dependencies of this module
7
- //internals: [],//list of lincd modules that you want to INCLUDE in the bundle (as opposed to the module its own bundle being a dependency)
8
- //alias:{},//webpack alias -> maps on type of npm path to another
9
- //target:"es5"|"es6",
10
- //environment:"server"|"frontend",
11
- //outputPath:string,
12
- //es5Server:boolean
13
- //es5:{},//es5 specific config, use same properties as above
14
- //es6:{},//es6 specific config, use same properties as above
15
- //debug:false,//debug the build process
16
- });
@@ -1,18 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "sourceMap": true,
5
- "target": "es5",
6
- "outDir": "lib",
7
- "declaration": false,
8
- "esModuleInterop": true,
9
- "resolveJsonModule": true,
10
- "downlevelIteration": true,
11
- "experimentalDecorators": true,
12
- "skipLibCheck": true,
13
- "jsx": "react",
14
- "baseUrl": "./",
15
- "rootDir": "src"
16
- },
17
- "files": ["./src/index.ts"]
18
- }
@@ -1,22 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "sourceMap": true,
5
- "target": "es6",
6
- "moduleResolution": "node",
7
- "outDir": "lib",
8
- "declaration": true,
9
- "experimentalDecorators": true,
10
- "emitDecoratorMetadata": true,
11
- "esModuleInterop": true,
12
- "resolveJsonModule": true,
13
- "downlevelIteration": true,
14
- "jsx": "react",
15
- "types": ["node"],
16
- "paths": {
17
- "react": ["../node_modules/@types/react","../../../node_modules/@types/react"]
18
- },
19
- "baseUrl": "./src"
20
- },
21
- "files": ["./src/index.ts"]
22
- }