Skip to content

Commit 3d5b250

Browse files
authored
🔒️ Resolve security alerts (#167)
2 parents 725f7c7 + 67f0da8 commit 3d5b250

18 files changed

+16527
-12664
lines changed

.babelrc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
"add-module-exports",
1111

1212
"@babel/plugin-proposal-export-default-from",
13-
"@babel/plugin-proposal-logical-assignment-operators",
14-
["@babel/plugin-proposal-optional-chaining", { "loose": false }],
13+
"@babel/plugin-transform-logical-assignment-operators",
14+
["@babel/plugin-transform-optional-chaining", { "loose": false }],
1515
["@babel/plugin-proposal-pipeline-operator", { "proposal": "minimal" }],
16-
["@babel/plugin-proposal-nullish-coalescing-operator", { "loose": false }],
16+
["@babel/plugin-transform-nullish-coalescing-operator", { "loose": false }],
1717
"@babel/plugin-proposal-do-expressions",
1818

1919
["@babel/plugin-proposal-decorators", { "legacy": true }],
2020
"@babel/plugin-proposal-function-sent",
21-
"@babel/plugin-proposal-export-namespace-from",
22-
"@babel/plugin-proposal-numeric-separator",
21+
"@babel/plugin-transform-export-namespace-from",
22+
"@babel/plugin-transform-numeric-separator",
2323
"@babel/plugin-proposal-throw-expressions",
2424

2525
"@babel/plugin-transform-modules-commonjs",
2626
"@babel/plugin-syntax-dynamic-import",
2727
"@babel/plugin-syntax-import-meta",
28-
["@babel/plugin-proposal-class-properties", { "loose": false }],
29-
"@babel/plugin-proposal-json-strings",
28+
["@babel/plugin-transform-class-properties", { "loose": false }],
29+
"@babel/plugin-transform-json-strings",
3030

3131
["babel-plugin-inline-import", {
3232
"extensions": [

.circleci/config.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
version: 2.1
22

3-
jobs:
3+
commands:
4+
upgrade-and-run-yarn:
5+
steps:
6+
- run:
7+
name: Upgrade and run Yarn
8+
command: |
9+
npm install -g corepack
10+
yarn set version 4.9.1
11+
yarn
412
13+
jobs:
514
build-macos:
615
macos:
716
xcode: 16.2.0
@@ -25,8 +34,7 @@ jobs:
2534
echo 'source $NVM_DIR/nvm.sh' >> $BASH_ENV
2635
echo 'nvm install ${NODE_VERSION}' >> $BASH_ENV
2736
echo 'nvm alias default ${NODE_VERSION}' >> $BASH_ENV
28-
- run:
29-
command: yarn && yarn run link
37+
- upgrade-and-run-yarn
3038
- run:
3139
command: |
3240
export NODE_ENV=$([ "${CIRCLE_BRANCH}" == "main" ] && echo "production" || echo "development")
@@ -45,8 +53,7 @@ jobs:
4553
BASH_ENV: ".circleci/bashrc"
4654
steps:
4755
- checkout
48-
- run:
49-
command: yarn && yarn run link
56+
- upgrade-and-run-yarn
5057
- run:
5158
command: |
5259
export NODE_ENV=$([ "${CIRCLE_BRANCH}" == "main" ] && echo "production" || echo "development")
@@ -65,8 +72,7 @@ jobs:
6572
BASH_ENV: ".circleci/bashrc"
6673
steps:
6774
- checkout
68-
- run:
69-
command: yarn && yarn run link
75+
- upgrade-and-run-yarn
7076
- run:
7177
command: |
7278
export NODE_ENV=$([ "${CIRCLE_BRANCH}" == "main" ] && echo "production" || echo "development")

.eslintignore

Lines changed: 0 additions & 49 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 51 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ dist
3838
.idea
3939
npm-debug.log.*
4040
node_modules
41+
.yarn

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

app/.babelrc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
"add-module-exports",
1111

1212
"@babel/plugin-proposal-export-default-from",
13-
"@babel/plugin-proposal-logical-assignment-operators",
14-
["@babel/plugin-proposal-optional-chaining", { "loose": false }],
13+
"@babel/plugin-transform-logical-assignment-operators",
14+
["@babel/plugin-transform-optional-chaining", { "loose": false }],
1515
["@babel/plugin-proposal-pipeline-operator", { "proposal": "minimal" }],
16-
["@babel/plugin-proposal-nullish-coalescing-operator", { "loose": false }],
16+
["@babel/plugin-transform-nullish-coalescing-operator", { "loose": false }],
1717
"@babel/plugin-proposal-do-expressions",
1818

1919
["@babel/plugin-proposal-decorators", { "legacy": true }],
2020
"@babel/plugin-proposal-function-sent",
21-
"@babel/plugin-proposal-export-namespace-from",
22-
"@babel/plugin-proposal-numeric-separator",
21+
"@babel/plugin-transform-export-namespace-from",
22+
"@babel/plugin-transform-numeric-separator",
2323
"@babel/plugin-proposal-throw-expressions",
2424

2525
"@babel/plugin-transform-modules-commonjs",
2626
"@babel/plugin-syntax-dynamic-import",
2727
"@babel/plugin-syntax-import-meta",
28-
["@babel/plugin-proposal-class-properties", { "loose": false }],
29-
"@babel/plugin-proposal-json-strings",
28+
["@babel/plugin-transform-class-properties", { "loose": false }],
29+
"@babel/plugin-transform-json-strings",
3030

3131
["babel-plugin-inline-import", {
3232
"extensions": [

app/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,5 @@
88
"name": "Anibal Solon",
99
"email": "[email protected]"
1010
},
11-
"scripts": {},
12-
"license": "MIT",
13-
"dependencies": {
14-
}
11+
"license": "MIT"
1512
}

app/yarn.lock

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2-
# yarn lockfile v1
1+
# This file is generated by running "yarn install" inside your project.
2+
# Manual changes might be lost - proceed with caution!
33

4+
__metadata:
5+
version: 8
6+
cacheKey: 10c0
47

8+
"c-pac_gui@workspace:.":
9+
version: 0.0.0-use.local
10+
resolution: "c-pac_gui@workspace:."
11+
languageName: unknown
12+
linkType: soft

c-pac/.babelrc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
"add-module-exports",
1111

1212
"@babel/plugin-proposal-export-default-from",
13-
"@babel/plugin-proposal-logical-assignment-operators",
14-
["@babel/plugin-proposal-optional-chaining", { "loose": false }],
13+
"@babel/plugin-transform-logical-assignment-operators",
14+
["@babel/plugin-transform-optional-chaining", { "loose": false }],
1515
["@babel/plugin-proposal-pipeline-operator", { "proposal": "minimal" }],
16-
["@babel/plugin-proposal-nullish-coalescing-operator", { "loose": false }],
16+
["@babel/plugin-transform-nullish-coalescing-operator", { "loose": false }],
1717
"@babel/plugin-proposal-do-expressions",
1818

1919
["@babel/plugin-proposal-decorators", { "legacy": true }],
2020
"@babel/plugin-proposal-function-sent",
21-
"@babel/plugin-proposal-export-namespace-from",
22-
"@babel/plugin-proposal-numeric-separator",
21+
"@babel/plugin-transform-export-namespace-from",
22+
"@babel/plugin-transform-numeric-separator",
2323
"@babel/plugin-proposal-throw-expressions",
2424

2525
"@babel/plugin-transform-modules-commonjs",
2626
"@babel/plugin-syntax-dynamic-import",
2727
"@babel/plugin-syntax-import-meta",
28-
["@babel/plugin-proposal-class-properties", { "loose": false }],
29-
"@babel/plugin-proposal-json-strings",
28+
["@babel/plugin-transform-class-properties", { "loose": false }],
29+
"@babel/plugin-transform-json-strings",
3030

3131
["babel-plugin-inline-import", {
3232
"extensions": [

0 commit comments

Comments
 (0)