-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: 👷 use NX | use LightingCSS | single Node script for entire build
- Loading branch information
1 parent
c3828ac
commit fb0350f
Showing
33 changed files
with
11,870 additions
and
63,984 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,6 @@ test/output/ | |
!.yarn/plugins | ||
!.yarn/sdks | ||
!.yarn/versions | ||
.pnp.* | ||
.pnp.* | ||
|
||
css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
auto-install-peers=false | ||
shamefully-hoist=true | ||
enable-pre-post-scripts=true | ||
|
||
|
||
# docker run -itd --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio | ||
# npm adduser --registry http://localhost:4873 | ||
registry=http://localhost:4873 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,18 @@ | ||
{ | ||
"version": "0.11.14", | ||
"packages": ["packages/*"], | ||
"npmClient": "pnpm", | ||
"granularPathspec": false, | ||
"command": { | ||
"version": { | ||
"allowBranch": ["master"], | ||
"conventionalCommits": true, | ||
"createRelease": "github", | ||
"message": "release: 🔖 publish %s" | ||
}, | ||
"publish": { | ||
"npmClient": "npm" | ||
} | ||
}, | ||
"changelog": { | ||
"labels": { | ||
"feature": "New Feature", | ||
"fix": "Bug Fix", | ||
"docs": "Documentation", | ||
"types": "Types", | ||
"perf": "Performance", | ||
"refactoring": "Refactor" | ||
} | ||
} | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"useNx": true, | ||
"version": "0.11.23", | ||
"npmClient": "pnpm", | ||
"command": { | ||
"version": { | ||
"allowBranch": ["master", "new-ci"], | ||
"conventionalCommits": true, | ||
"message": "release: 🔖 publish %s" | ||
}, | ||
"publish": { | ||
"npmClient": "pnpm" | ||
} | ||
}, | ||
"changelog": true, | ||
"concurrency": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "nx/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": ["watch", "compile"] | ||
} | ||
} | ||
}, | ||
"targetDefaults": { | ||
"watch": { | ||
"outputs": ["{projectRoot}/css"] | ||
}, | ||
"compile": { | ||
"dependsOn": ["clean", "^compile"], | ||
"outputs": ["{projectRoot}/css"] | ||
} | ||
}, | ||
"$schema": "./node_modules/nx/schemas/nx-schema.json", | ||
"namedInputs": { | ||
"default": ["{projectRoot}/**/*", "sharedGlobals"], | ||
"sharedGlobals": [], | ||
"production": ["default"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@charset "utf-8"; | ||
|
||
@forward "buefy" with ($rtl: true); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@charset "utf-8"; | ||
|
||
@forward "../bulma/bulma"; | ||
@forward "scss/components"; | ||
@forward "scss/helpers"; | ||
|
||
/// @forward "themes/light" |
Oops, something went wrong.