Skip to content

Commit

Permalink
Merge pull request #405 from massalabs/merge_next
Browse files Browse the repository at this point in the history
Merge next
  • Loading branch information
peterjah authored Aug 9, 2024
2 parents 847b816 + 0104228 commit eddb8ca
Show file tree
Hide file tree
Showing 15 changed files with 2,119 additions and 2,147 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/npm-publish-next.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Npm next publish

on:
push:
branches: [next]

jobs:
test:
uses: ./.github/workflows/tests.yml

publish-npm-next:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: publish
run: ./scripts/publish-next.sh
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
171 changes: 11 additions & 160 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"packages/*"
],
"dependencies": {
"@massalabs/as-transformer": "^0.3.1",
"@massalabs/massa-web3": "^2.1.0",
"eslint": "^8.46.0",
"jest-environment-jsdom": "^29.5.0",
Expand Down
4 changes: 1 addition & 3 deletions packages/sc-project-initializer/commands/init/.env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
WALLET_SECRET_KEY=

JSON_RPC_URL_PUBLIC=https://buildnet.massa.net/api/v2
PRIVATE_KEY=
3 changes: 3 additions & 0 deletions packages/sc-project-initializer/commands/init/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
module.exports = {
extends: ['@massalabs'],
rules: {
'no-console': 'off',
},
};
12 changes: 3 additions & 9 deletions packages/sc-project-initializer/commands/init/asconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
{
"targets": {
"debug": {
"sourceMap": true,
"debug": true
},
"release": {
"sourceMap": true,
"optimizeLevel": 3,
"shrinkLevel": 3,
"converge": true,
"noAssert": false
"noAssert": false,
"exportRuntime": true,
"bindings": false
}
},
"options": {
"exportRuntime": true,
"bindings": "esm"
}
}
Loading

0 comments on commit eddb8ca

Please sign in to comment.