tokens-bruecke 2.11.3 → 2.11.4
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/.github/workflows/release.yml +0 -5
- package/bin/cli.js +0 -0
- package/package.json +10 -9
- package/tsconfig.json +0 -0
- package/webpack.config.js +0 -0
|
@@ -46,8 +46,3 @@ jobs:
|
|
|
46
46
|
run: gh release create ${{ github.ref_name }} ./dist/figma-plugin.zip --title "${{ github.ref_name }}" --generate-notes
|
|
47
47
|
env:
|
|
48
48
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
49
|
-
|
|
50
|
-
- name: Publish to npm
|
|
51
|
-
run: pnpm publish --no-git-checks --access public
|
|
52
|
-
env:
|
|
53
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/bin/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tokens-bruecke",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,6 +18,13 @@
|
|
|
18
18
|
"name": "Pavel Laptev",
|
|
19
19
|
"url": "https://pavellaptev.github.io"
|
|
20
20
|
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build:cli": "webpack --mode=production --config webpack.config.cli.js",
|
|
23
|
+
"build:plugin": "webpack --mode=production",
|
|
24
|
+
"build": "npm run build:cli && npm run build:plugin",
|
|
25
|
+
"dev": "webpack --mode=development --watch",
|
|
26
|
+
"test": "vitest"
|
|
27
|
+
},
|
|
21
28
|
"type": "commonjs",
|
|
22
29
|
"main": "bin/cli.js",
|
|
23
30
|
"bin": {
|
|
@@ -62,11 +69,5 @@
|
|
|
62
69
|
"webpack-cli": "^4.10.0",
|
|
63
70
|
"zip-webpack-plugin": "^4.0.3"
|
|
64
71
|
},
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
"build:plugin": "webpack --mode=production",
|
|
68
|
-
"build": "npm run build:cli && npm run build:plugin",
|
|
69
|
-
"dev": "webpack --mode=development --watch",
|
|
70
|
-
"test": "vitest"
|
|
71
|
-
}
|
|
72
|
-
}
|
|
72
|
+
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
|
|
73
|
+
}
|
package/tsconfig.json
CHANGED
|
File without changes
|
package/webpack.config.js
CHANGED
|
File without changes
|