@taqwright/taqwright 0.0.24 → 0.0.25

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/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  </h1>
6
6
 
7
7
  <p align="center">
8
- <a href="https://github.com/taqelah/taqwright/tags"><img src="https://img.shields.io/badge/version-0.0.24-blue" alt="version" /></a>
8
+ <a href="https://github.com/taqelah/taqwright/tags"><img src="https://img.shields.io/badge/version-0.0.25-blue" alt="version" /></a>
9
9
  </p>
10
10
 
11
11
  E2E mobile UI testing on the Playwright runner, with a flat locator API on top of Appium 3.
@@ -44,7 +44,7 @@ In `package.json` it looks like:
44
44
 
45
45
  ```json
46
46
  "devDependencies": {
47
- "@taqwright/taqwright": "^0.0.24"
47
+ "@taqwright/taqwright": "^0.0.25"
48
48
  }
49
49
  ```
50
50
 
package/dist/bin/init.js CHANGED
@@ -241,9 +241,8 @@ export async function runInit(argDir, opts = {}) {
241
241
  if (code !== 0) {
242
242
  console.error(`\nnpm install exited with code ${code}.`);
243
243
  if (!linkedDev) {
244
- console.error('\n@taqwright/taqwright installs from git+ssh://git@github.com/taqelah/taqwright.git,');
245
- console.error('so a failure here usually means no SSH access to the private taqelah/taqwright repo.');
246
- console.error('Verify your GitHub SSH key with: ssh -T git@github.com');
244
+ console.error('\n@taqwright/taqwright installs from public npm — a failure here is usually a');
245
+ console.error('network/registry issue. Retry, or check your npm registry settings.');
247
246
  console.error('To use a local taqwright build instead:');
248
247
  console.error(' cd /path/to/taqwright && npm link');
249
248
  console.error(` cd ${cdHint} && npm install && npm link @taqwright/taqwright`);
@@ -533,7 +532,7 @@ function packageJsonTemplate(name) {
533
532
  report: 'taqwright show-report',
534
533
  },
535
534
  devDependencies: {
536
- '@taqwright/taqwright': 'git+ssh://git@github.com/taqelah/taqwright.git',
535
+ '@taqwright/taqwright': 'latest',
537
536
  '@types/node': '^24.0.0',
538
537
  typescript: '^5.4.0',
539
538
  },
@@ -892,11 +891,6 @@ playwright-report
892
891
  `;
893
892
  }
894
893
  function npmrcTemplate() {
895
- return `# Active path today: @taqwright/taqwright installs over git+ssh — no token needed.
896
- # Future (once published to GitHub Packages), uncomment and supply a token:
897
- # @taqwright:registry=https://npm.pkg.github.com
898
- # Auth needs a Personal Access Token with read:packages. Don't commit it —
899
- # put it in your user ~/.npmrc or a CI env var, e.g.:
900
- # //npm.pkg.github.com/:_authToken=\${NODE_AUTH_TOKEN}
894
+ return `# @taqwright/taqwright installs from public npm — no registry config or token needed.
901
895
  `;
902
896
  }
package/package.json CHANGED
@@ -1,12 +1,8 @@
1
1
  {
2
2
  "name": "@taqwright/taqwright",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "E2E mobile testing on the Playwright runner",
5
5
  "license": "Apache-2.0",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/taqelah/taqwright.git"
9
- },
10
6
  "type": "module",
11
7
  "main": "dist/index.js",
12
8
  "types": "dist/index.d.ts",