jspm 3.3.3 → 3.3.5

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 (4) hide show
  1. package/Readme.md +40 -0
  2. package/dist/cli.js +951 -665
  3. package/package.json +9 -6
  4. package/README.md +0 -26
package/Readme.md ADDED
@@ -0,0 +1,40 @@
1
+ <div align="center">
2
+ <img style="display: inline-block; width: 100px; vertical-align: middle; margin-top: -1em;" src="https://jspm.org/jspm.png"/>
3
+ <h1 style="display: inline-block">JSPM</h1>
4
+ <p><strong>Package management tools for the JSPM project, supporting import map package management.</strong></p>
5
+ <a href="https://jspm.org/getting-started">Getting Started</a> | <a href="https://jspm.org/docs/jspm-cli">Documentation</a> | <a href="https://jspm.org/faq">FAQ</a>
6
+ <br />
7
+ <hr style="width:50%"/>
8
+ </div>
9
+ <br />
10
+
11
+ This monorepo includes the following tools:
12
+
13
+ * [`cli`]: `jspm` CLI tool
14
+ * [`generator`](./generator): JSPM Generator import map generation library (`@jspm/generator`)
15
+ * [`import-map`](./import-map): JSPM Import Map low-level manipulation library (`@jspm/import-map`)
16
+
17
+ ### Features
18
+
19
+ * **Local Linking**: map packages to your local `node_modules` folder
20
+ * **Common CDNs**: Resolve against common CDNs like [jspm.io](https://jspm.io/), [jsDelivr](https://jsdelivr.com), [UNPKG](https://unpkg.com/) and [more](#customProviders)
21
+ * **Universal Semantics**: Implements [universal CDN resolution](https://jspm.org/docs/cdn-resolution.md) semantics, based on an extension of the Node.js resolution
22
+ * **Conditional Resolution**: Map different versions of a module based on environment
23
+ * **Dependency Versioning**: Respects the version constraints in local and remote `package.json` files
24
+ * **Package Entrypoints**: Handles node-style package exports, imports and own-name resolution
25
+ * **Importmap Injection**: Import map extraction/injection into HTML files, with module preloading and integrity attributes.
26
+
27
+ ### Documentation
28
+
29
+ * JSPM CLI: https://jspm.org/docs/jspm-cli
30
+ * JSPM Generator: https://jspm.org/docs/generator
31
+ * Import Map: https://jspm.org/docs/import-map
32
+ * Getting Started: https://jspm.org/getting-started
33
+
34
+ ## Contributing
35
+
36
+ Build and test workflows use [Chomp](https://chompbuild.com).
37
+
38
+ ## License
39
+
40
+ Apache-2.0