@toptal/picasso-cypress-utils 0.0.0

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.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/index.js +5 -0
  3. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @toptal/picasso-cypress-utils — name reservation
2
+
3
+ This `0.0.0` release is an **empty placeholder** that exists only to create the
4
+ package on npm. Do not install or depend on it.
5
+
6
+ **Why it exists:** `toptal/picasso` publishes via npm **trusted publishing**
7
+ (OIDC, no tokens). Trusted publishing is configured per package on its npm
8
+ settings page — which a never-published package does not have — so the very
9
+ first release of any new package must be published once with real credentials.
10
+ This stub is that first release.
11
+
12
+ The real package — Cypress commands written against Picasso's DOM contract
13
+ (`getPopup`, `setChecked`, `assertChecked`, `assertDisabled`, `selectOption`,
14
+ `getTooltip`) — ships from
15
+ [toptal/picasso#5092](https://github.com/toptal/picasso/pull/5092) as `100.x`:
16
+ alpha builds on the `canary` dist-tag, the stable release on `latest` after
17
+ merge, replacing this placeholder.
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict'
2
+
3
+ // Placeholder release reserving the package name. Real releases (100.x) are
4
+ // published from https://github.com/toptal/picasso by CI trusted publishing.
5
+ module.exports = {}
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@toptal/picasso-cypress-utils",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder reserving the package name — real releases ship from toptal/picasso via trusted publishing",
5
+ "author": "Toptal",
6
+ "license": "MIT",
7
+ "main": "index.js",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/toptal/picasso.git"
14
+ },
15
+ "homepage": "https://github.com/toptal/picasso/tree/master/packages/picasso-cypress-utils",
16
+ "bugs": {
17
+ "url": "https://github.com/toptal/picasso/issues"
18
+ },
19
+ "files": [
20
+ "index.js"
21
+ ]
22
+ }