Skip to content

Commit a24dc3e

Browse files
authored
build(deps): bump craft-parts (#5031)
1 parent 96140ad commit a24dc3e

File tree

8 files changed

+50
-3
lines changed

8 files changed

+50
-3
lines changed

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ craft-application==3.1.0
1717
craft-archives==1.1.3
1818
craft-cli==2.6.0
1919
craft-grammar==1.2.0
20-
craft-parts==1.33.0
20+
craft-parts==1.33.1
2121
craft-providers==1.24.2
2222
craft-store==2.6.2
2323
cryptography==42.0.8

requirements-devel.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ craft-application==3.1.0
1515
craft-archives==1.1.3
1616
craft-cli==2.6.0
1717
craft-grammar==1.2.0
18-
craft-parts==1.33.0
18+
craft-parts==1.33.1
1919
craft-providers==1.24.2
2020
craft-store==2.6.2
2121
cryptography==42.0.8

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ craft-application==3.1.0
99
craft-archives==1.1.3
1010
craft-cli==2.6.0
1111
craft-grammar==1.2.0
12-
craft-parts==1.33.0
12+
craft-parts==1.33.1
1313
craft-providers==1.24.2
1414
craft-store==2.6.2
1515
cryptography==42.0.8
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env node
2+
3+
console.log('hello world');

tests/spread/core24/npm-reentrant/package-lock.json

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "npm-hello",
3+
"version": "1.0.0",
4+
"description": "Testing grounds for snapcraft integration tests",
5+
"bin": {
6+
"npm-hello": "hello.js"
7+
},
8+
"scripts": {
9+
"npm-hello": "echo \"Error: no test specified\" && exit 1"
10+
},
11+
"author": "",
12+
"license": "GPL-3.0"
13+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: npm-reentrant
2+
version: "1.0"
3+
summary: test the npm plugin
4+
description: Check that the npm plugin works across snapcraft calls
5+
6+
confinement: strict
7+
grade: devel
8+
base: core24
9+
10+
parts:
11+
hello:
12+
source: .
13+
plugin: npm
14+
npm-include-node: true
15+
npm-node-version: 22.1.0
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
summary: Pull, then Build, a Node snap
2+
3+
execute: |
4+
snapcraft pull
5+
snapcraft build
6+
snapcraft pack
7+
test -f npm-reentrant*.snap
8+
9+
restore: |
10+
snapcraft clean
11+
rm -f ./*.snap

0 commit comments

Comments
 (0)