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.
- package/Readme.md +40 -0
- package/dist/cli.js +951 -665
- package/package.json +9 -6
- package/README.md +0 -26
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jspm",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.3.
|
|
4
|
+
"version": "3.3.5",
|
|
5
5
|
"description": "Import Map Package Manager",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"bin": {
|
|
@@ -11,12 +11,16 @@
|
|
|
11
11
|
"dist",
|
|
12
12
|
"jspm.js"
|
|
13
13
|
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "chomp build",
|
|
16
|
+
"test": "chomp test"
|
|
17
|
+
},
|
|
14
18
|
"dependencies": {
|
|
15
|
-
"@jspm/generator": "^2.
|
|
19
|
+
"@jspm/generator": "^2.5.1",
|
|
16
20
|
"cac": "^6.7.14",
|
|
17
|
-
"ora": "^
|
|
18
|
-
"picocolors": "^1.
|
|
19
|
-
"rollup": "^3.29.
|
|
21
|
+
"ora": "^8.2.0",
|
|
22
|
+
"picocolors": "^1.1.1",
|
|
23
|
+
"rollup": "^3.29.5"
|
|
20
24
|
},
|
|
21
25
|
"devDependencies": {
|
|
22
26
|
"@antfu/eslint-config": "^0.34.2",
|
|
@@ -27,7 +31,6 @@
|
|
|
27
31
|
"eslint-config-prettier": "^8.8.0",
|
|
28
32
|
"prettier": "^2.8.7",
|
|
29
33
|
"tinyspy": "^1.1.1",
|
|
30
|
-
"tsx": "^4.16.2",
|
|
31
34
|
"typescript": "^4.9.5"
|
|
32
35
|
}
|
|
33
36
|
}
|
package/README.md
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
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 CLI</h1>
|
|
4
|
-
<p><strong>JSPM CLI is the package management of 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
|
-
* Resolution against `node_modules` for local development workflows.
|
|
12
|
-
* Versioned, locked dependency management against the local `package.json`.
|
|
13
|
-
* Tracing and installing the full dependency tree of an application.
|
|
14
|
-
* Complete NPM-like module resolution that supports conditional environments and package entry points.
|
|
15
|
-
* Support for a wide range of CDNs, such as `jspm.io`, `jsDeliver`, `esm.sh` and `unpkg`.
|
|
16
|
-
* Import map extraction/injection into HTML files, with module preloading and integrity attributes.
|
|
17
|
-
|
|
18
|
-
See the [documentation](https://jspm.org/docs/jspm-cli) and [getting started](https://jspm.org/getting-started) guide on jspm.org.
|
|
19
|
-
|
|
20
|
-
## Contributing
|
|
21
|
-
|
|
22
|
-
Build and test workflows use [Chomp](https://chompbuild.com).
|
|
23
|
-
|
|
24
|
-
## License
|
|
25
|
-
|
|
26
|
-
Apache-2.0
|