-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from hammzj/dev/use-in-js
Allow JS to use this package
- Loading branch information
Showing
7 changed files
with
51 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Build | ||
run: | | ||
yarn install | ||
yarn run dev:tsc | ||
yarn run dev:build | ||
lint: | ||
name: Run eslint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@hammzj/cypress-page-object", | ||
"version": "2.1.2", | ||
"version": "2.2.0", | ||
"description": "A set of template classes and guides to help with developing component and page objects in Cypress.", | ||
"author": "Zachary Hamm <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -19,15 +19,15 @@ | |
"test", | ||
"test automation" | ||
], | ||
"main": "index.ts", | ||
"main": "build/dist/src/index.js", | ||
"types": "build/dist/src/index.d.ts", | ||
"files": [ | ||
"src/", | ||
"index.ts", | ||
"build/dist/src", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"dev:tsc": "tsc", | ||
"dev:build": "tsc", | ||
"dev:lint": "eslint . --ext .js,.ts", | ||
"dev:prettier": "prettier --write \"**/*.{ts,tsx,js,jsx}\" \"docs/**/*.md\" \"*.md\"", | ||
"dev:postinstall": "husky install", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters