node-csfd-api 3.0.0-next.8 → 3.0.0-next.9
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/package.json +6 -5
- package/cjs/interfaces/creator.interface.js +0 -2
- package/cjs/interfaces/global.js +0 -2
- package/cjs/interfaces/movie.interface.js +0 -2
- package/cjs/interfaces/search.interface.js +0 -2
- package/cjs/interfaces/user-ratings.interface.js +0 -2
- package/esm/interfaces/creator.interface.js +0 -1
- package/esm/interfaces/global.js +0 -1
- package/esm/interfaces/movie.interface.js +0 -1
- package/esm/interfaces/search.interface.js +0 -1
- package/esm/interfaces/user-ratings.interface.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-csfd-api",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.9",
|
|
4
4
|
"description": "ČSFD API in JavaScript. Amazing NPM library for scrapping csfd.cz :)",
|
|
5
5
|
"main": "./cjs/index.js",
|
|
6
6
|
"author": "BART! <bart@bartweb.cz>",
|
|
@@ -8,13 +8,14 @@
|
|
|
8
8
|
"start": "tsc -w",
|
|
9
9
|
"prebuild": "rimraf dist",
|
|
10
10
|
"build": "tsc && tsc -p tsconfig-cjs.json && yarn barrels",
|
|
11
|
-
"barrels": "barrelsby
|
|
12
|
-
"postbuild": "npm-prepare-dist -s postinstall -s prepare && yarn fix-paths",
|
|
11
|
+
"barrels": "barrelsby -c barrels.json",
|
|
12
|
+
"postbuild": "npm-prepare-dist -s postinstall -s prepare && yarn delete:unused-folders && yarn fix-paths ",
|
|
13
13
|
"tsc": "tsc",
|
|
14
14
|
"demo": "ts-node demo",
|
|
15
15
|
"lint": "eslint ./src/**/**/* --fix",
|
|
16
16
|
"test": "jest",
|
|
17
|
-
"fix-paths": "yarn json -I -f ./dist/package.json -e \"this.module='./esm/index.js';this.main='./cjs/index.js';this.types='./types/index.
|
|
17
|
+
"fix-paths": "yarn json -I -f ./dist/package.json -e \"this.module='./esm/index.js';this.main='./cjs/index.js';this.types='./types/index.ts'\"",
|
|
18
|
+
"delete:unused-folders": "rimraf ./dist/esm/interfaces ./dist/cjs/interfaces",
|
|
18
19
|
"publish:next": "yarn && yarn build && yarn test --coverage true && cd dist && npm publish --tag next",
|
|
19
20
|
"postversion": "git push && git push --follow-tags",
|
|
20
21
|
"release:beta": "npm version preminor --preid=beta -m \"chore(update): prelease %s β\"",
|
|
@@ -57,5 +58,5 @@
|
|
|
57
58
|
},
|
|
58
59
|
"license": "MIT",
|
|
59
60
|
"module": "./esm/index.js",
|
|
60
|
-
"types": "./types/index.
|
|
61
|
+
"types": "./types/index.ts"
|
|
61
62
|
}
|
package/cjs/interfaces/global.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/esm/interfaces/global.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|