@transclude/create 0.1.1 → 0.3.0
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.
package/LICENSE
CHANGED
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Starts a project. `npm create transclude my-app
|
|
2
|
+
// Starts a project. `npm create @transclude my-app`.
|
|
3
3
|
//
|
|
4
4
|
// It copies a template and rewrites three things: the package name, the
|
|
5
5
|
// dependency on this framework, and the title on the page. Nothing else is
|
package/package.json
CHANGED
|
@@ -4,8 +4,10 @@
|
|
|
4
4
|
"module": "esnext",
|
|
5
5
|
"moduleResolution": "bundler",
|
|
6
6
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
7
|
-
"checkJs":
|
|
7
|
+
"checkJs": true,
|
|
8
|
+
"maxNodeModuleJsDepth": 0,
|
|
8
9
|
"noEmit": true
|
|
9
10
|
},
|
|
10
|
-
"include": ["app", "transclude.config.js"]
|
|
11
|
+
"include": ["app", "transclude.config.js"],
|
|
12
|
+
"exclude": ["app/public"]
|
|
11
13
|
}
|
|
@@ -4,8 +4,10 @@
|
|
|
4
4
|
"module": "esnext",
|
|
5
5
|
"moduleResolution": "bundler",
|
|
6
6
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
7
|
-
"checkJs":
|
|
7
|
+
"checkJs": true,
|
|
8
|
+
"maxNodeModuleJsDepth": 0,
|
|
8
9
|
"noEmit": true
|
|
9
10
|
},
|
|
10
|
-
"include": ["app", "transclude.config.js"]
|
|
11
|
+
"include": ["app", "transclude.config.js"],
|
|
12
|
+
"exclude": ["app/public"]
|
|
11
13
|
}
|