@productminds/article-events 0.0.11 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/article-events.d.ts +1 -2
- package/lib/article-events.js +1 -3
- package/lib/cmd/write-json-schema.js +1 -1
- package/lib/events/ArticleEvent.d.ts +15 -427
- package/lib/events/ExternalArticleEvent.d.ts +84 -68
- package/lib/events/ExternalArticleEvent.js +4 -3
- package/lib/events/InternalArticleEvent.d.ts +155 -75
- package/lib/events/InternalArticleEvent.js +7 -6
- package/lib/types/Article.d.ts +6 -33
- package/lib/types/Article.js +10 -16
- package/lib/utils/makeHelpers.js +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@productminds/article-events",
|
3
|
-
"version": "
|
3
|
+
"version": "1.0.1",
|
4
4
|
"description": "Article events",
|
5
5
|
"license": "ISC",
|
6
6
|
"main": "lib/article-events.js",
|
@@ -15,6 +15,6 @@
|
|
15
15
|
"cmd:generate_json_schema": "tsc && node ./lib/cmd/write-json-schema.js",
|
16
16
|
"build": "tsc",
|
17
17
|
"build:watch": "tsc --watch",
|
18
|
-
"build_and_publish": "npm run build &&
|
18
|
+
"build_and_publish": "npm run build && npm publish"
|
19
19
|
}
|
20
20
|
}
|