Skip to content

Commit 461fa68

Browse files
authored
chore(deps): move back from npm.dev-internal.org to registry.npmjs.org (#3494)
* chore(deps): move back from `npm.dev-internal.org` to `registry.npmjs.org` * move forward forward * disable `@typescript-eslint/prefer-optional-chain` lint It suggests `?.` over `&&` chains, which is fine, but requires some modifications to the code that are undesired as of now, IMHO * ignore .tact files with prettier
1 parent ad1160e commit 461fa68

File tree

8 files changed

+3932
-3922
lines changed

8 files changed

+3932
-3922
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ module.exports = {
117117
"@typescript-eslint/prefer-includes": "error",
118118
"@typescript-eslint/prefer-literal-enum-member": "error",
119119
"@typescript-eslint/prefer-nullish-coalescing": "error",
120-
"@typescript-eslint/prefer-optional-chain": "error",
120+
"@typescript-eslint/prefer-optional-chain": "off",
121121
"@typescript-eslint/prefer-string-starts-ends-with": "error",
122122
"require-await": "off",
123123
"@typescript-eslint/require-await": "error",

.github/workflows/tact.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
matrix:
58-
node-version: [23]
58+
node-version: [24]
5959
os: [ubuntu-latest, windows-latest, macos-latest]
6060
runs-on: ${{ matrix.os }}
6161
steps:
@@ -70,6 +70,8 @@ jobs:
7070

7171
- name: Forward compatibility tests
7272
run: |
73+
# Don't proceed with failed commands on Windows
74+
${{ matrix.os == 'windows-latest' && '$ErrorActionPreference = "Stop"' || '' }}
7375
# Install dependencies and perform some steps of the build pipeline,
7476
# skipping the contract generation and the final `yarn build` step
7577
yarn install

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ src/grammar/grammar.ts
66
/grammar
77
/docs
88
src/asm/generator/instructions.ts
9+
**/*.tact

.yarnrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
registry "https://npm.dev-internal.org/"
1+
registry "https://registry.npmjs.org/"

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tact-docs",
33
"license": "CC-BY-4.0",
4-
"private": "true",
4+
"private": true,
55
"type": "module",
66
"scripts": {
77
"clean": "rm -rf dist/ out/ .astro/",

docs/yarn.lock

Lines changed: 2037 additions & 2072 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
},
150150
"publishConfig": {
151151
"access": "public",
152-
"registry": "https://npm.dev-internal.org/"
152+
"registry": "https://registry.npmjs.org/"
153153
},
154154
"packageManager": "[email protected]",
155155
"engines": {

yarn.lock

Lines changed: 1887 additions & 1845 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)