isobit-ui 1.0.21 → 1.0.30
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 +0 -0
- package/README.txt +43 -0
- package/dist/index.js +7753 -0
- package/dist/library.js +1 -1
- package/dist/library.mjs +1 -1
- package/package.json +9 -10
package/README.md
CHANGED
|
File without changes
|
package/README.txt
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
https://snyk.io/advisor/npm-package/cili
|
|
2
|
+
|
|
3
|
+
Install
|
|
4
|
+
|
|
5
|
+
# Globally
|
|
6
|
+
yarn global add bili
|
|
7
|
+
# Locally
|
|
8
|
+
yarn add bili --dev
|
|
9
|
+
If you prefer npm:
|
|
10
|
+
|
|
11
|
+
# Globally
|
|
12
|
+
npm i -g bili
|
|
13
|
+
# Locally
|
|
14
|
+
npm i -D bili
|
|
15
|
+
Usage
|
|
16
|
+
Bundle src/index.js with a single command:
|
|
17
|
+
|
|
18
|
+
bili
|
|
19
|
+
Then you will get ./dist/index.cjs.js. To generate in more formats, try:
|
|
20
|
+
|
|
21
|
+
bili --format cjs,es,umd,umd-min
|
|
22
|
+
Then you will get:
|
|
23
|
+
|
|
24
|
+
index.js # UMD format
|
|
25
|
+
index.min.js # Minified UMD format
|
|
26
|
+
index.min.js.map # Sourcemaps for minified UMD format
|
|
27
|
+
index.cjs.js # CommonJS format
|
|
28
|
+
index.es.js # ES module format
|
|
29
|
+
|
|
30
|
+
https://developpaper.com/vue-js-build-your-first-package-and-publish-it-on-npm/
|
|
31
|
+
https://byegoist.medium.com/bundle-vue-library-with-bili-65de446365a8
|
|
32
|
+
https://www.telerik.com/blogs/vuejs-how-to-build-your-first-package-publish-it-on-npm
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
jorik2021A1_npm_pinedo@
|
|
36
|
+
|
|
37
|
+
javascript
|
|
38
|
+
https://livecodestream.dev/post/publish-your-first-node-library-using-npm/
|
|
39
|
+
|
|
40
|
+
npm install --save ku-button
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
pnpm link --global
|