vasille 2.0.1 → 2.0.2
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/.gitlab-ci.yml +20 -0
- package/README.md +7 -0
- package/cdn/es2015.js +3221 -0
- package/cdn/es5.js +3673 -0
- package/package.json +13 -6
package/.gitlab-ci.yml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This file is a template, and might need editing before it works on your project.
|
|
2
|
+
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
3
|
+
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
4
|
+
# This specific template is located at:
|
|
5
|
+
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Nodejs.gitlab-ci.yml
|
|
6
|
+
|
|
7
|
+
# Official framework image. Look for the different tagged releases at:
|
|
8
|
+
# https://hub.docker.com/r/library/node/tags/
|
|
9
|
+
image: node:latest
|
|
10
|
+
|
|
11
|
+
# This folder is cached between builds
|
|
12
|
+
# https://docs.gitlab.com/ee/ci/yaml/index.html#cache
|
|
13
|
+
cache:
|
|
14
|
+
paths:
|
|
15
|
+
- node_modules/
|
|
16
|
+
|
|
17
|
+
test_async:
|
|
18
|
+
script:
|
|
19
|
+
- npm install
|
|
20
|
+
- npm run build
|
package/README.md
CHANGED
|
@@ -16,6 +16,13 @@
|
|
|
16
16
|
npm install vasille --save
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
### CDN
|
|
20
|
+
|
|
21
|
+
```html
|
|
22
|
+
<script src="https://unpkg.com/vasille"></script> - ES215 version
|
|
23
|
+
<script src="https://unpkg.com/vasille/cdn/es5.js"></script> - ES5 Compatible version
|
|
24
|
+
```
|
|
25
|
+
|
|
19
26
|
### Getting ready be example
|
|
20
27
|
* JavaScript Example
|
|
21
28
|
* TypeScript Example
|