create-mapcomponents-app 1.5.7-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.
package/.babelrc ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "presets": [
3
+ [
4
+ "@nx/react/babel",
5
+ {
6
+ "runtime": "automatic",
7
+ "useBuiltIns": "usage"
8
+ }
9
+ ]
10
+ ],
11
+ "plugins": []
12
+ }
package/.cli.js ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ import degit from 'degit';
3
+ const path = process.argv[2] || 'my-mapcomponents-app';
4
+
5
+ const emitter = degit('mapcomponents/template');
6
+ emitter.clone(path).then(() => {
7
+ console.log(`Project cloned to ${path}`);
8
+ });
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # create-mapcomponents-app
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Running unit tests
6
+
7
+ Run `nx test create-mapcomponents-app` to execute the unit tests via [Vitest](https://vitest.dev/).
package/dist/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # create-mapcomponents-app
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Running unit tests
6
+
7
+ Run `nx test create-mapcomponents-app` to execute the unit tests via [Vitest](https://vitest.dev/).