Skip to content

Commit a6f597f

Browse files
committed
Release v1.0.0
1 parent c8dc74a commit a6f597f

File tree

3 files changed

+45
-12
lines changed

3 files changed

+45
-12
lines changed

.github/workflows/npm-publish.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: npm-publish
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v1
14+
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: 10
18+
19+
- name: Install and test
20+
run: |
21+
rm package-lock.json
22+
npm install --no-optional
23+
npm run test
24+
25+
- uses: JS-DevTools/npm-publish@v1
26+
with:
27+
token: ${{ secrets.NPM_TOKEN }}
28+
access: "public"

package-lock.json

+15-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@abstractapi/javascript-email-validation",
3-
"version": "0.1.2",
3+
"version": "1.0.0",
44
"description": "AbstractAPI Javascript Email Validation Library - Wrapper to quickly start using the powerful AbstractAPI's email validation service in your projects.",
55
"main": "index.js",
66
"scripts": {
@@ -54,7 +54,7 @@
5454
"webpack-cli": "^4.5.0"
5555
},
5656
"dependencies": {
57-
"@abstractapi/javascript-core": "0.x",
57+
"@abstractapi/javascript-core": "1.x",
5858
"fsevents": "^2.3.2"
5959
},
6060
"directories": {

0 commit comments

Comments
 (0)